I have a html page with a list box.

<HTML>

<BODY>
<form name=blah>
<SELECT size=2 id=select1 name=select1 style="WIDTH: 80px; HEIGHT: 130px">
<OPTION>test1</OPTION>
<OPTION>test2</OPTION>
<OPTION>test3</OPTION>

</SELECT>

<BR>
<BR>
<BR>
<input type="button" value="Move" onclick='doo();'>
</form>



I can't for the life of me add to this list. I thought it would be document.blah.select1.add "test4"
,But I keep getting a type mismatch error. Can anyone help me on this.