<select size=5 name=s1 style="width:100px;" onmousemove="showTip(this);" onmouseout="hideTip(this);">
<option>111111111111111111111111111111111111111111
<option>222222222222222222222222222222222222222222
<option>333333333333333333333333333333333333333333
<option>444444444444444444444444444444444444444444
<option>555555555555555555555555555555555555555555
</select><script>
var oP=window.createPopup();
function showTip(_obj){
line=parseInt(event.offsetY/15);
if(line>_obj.options.length-1)
  line=_obj.options.length-1;
oP.document.body.style.background="yellow";
oP.document.body.innerText=_obj.options[line].text;
len=_obj.options[line].text.length*9;
oP.show(event.x,event.y,len, 20, document.body);
}
function hideTip(_obj){
oP.hide();
}
</script>