<script>
function select_item()
{
var qh=window.opener.document.all("s")
//clear options
for(var i=0;i<qh.length;i++)
{
qh.options=null
}
var n1=opener.document.createElement("OPTION")
n1,value="aaa"
n1.text="bbb"
qh.add(n1)
}
select_item()
</script>