<BODY>
<a href='http://www.csdn.net' onclick='addit(this.innerText,this.href);return false;'>程序员</a>
<select name=test onchange="window.open(this.options[this.selectedIndex].value)">
<option value=''>==All==</option>
<option value='http://www.sohu.com'>搜狐</option>
<option value='http://www.sina.com.cn'>新浪</option>
</select>
<script>
function addit(text,value){
test.options[test.options.length]=new Option(text,value);
return false;
}
</script>
</BODY>