<select name=select1>
<option>--请选择书--</option>
<option>book1</option>
<option>book2</option>
<option>book3</option>
<option>book4</option>
</select>
<input type=button value="删除" onclick=delsel()>
<script language=javascript>
function delsel()
{
var select1=document.getElementById("select1");
var index=select1.selectedIndex;
eval("select1.options[" + index + "]=null");
select1.selectedIndex=0;
}
</script>