This works:).....
<html><head><title>Select Size</title>
<script>
function changeSize(Listbox, Size,type)
{
Listbox.size = Size;
var index=form1.select1.selectedIndex;
form1.select1.options[form1.select1.selectedIndex].selected = true;
form1.select1.multiple=type;
}
</script>
</head>
<body>
<form name="form1">
<select name="select1" onmouseout="changeSize(this, 2,false);" onmouseover="changeSize(this, 5,true);" multiple>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
</select>
</form>
</body>
</html>
|