<body>
<select onchange="jumpto(this.value)">
<option value="http://sina.com.cn">新浪</option>
<option value="http://sohu.com">搜狐</option>
<option value="http://163.com">163</option>
</select>
<iframe id="iframe1"src="http://www.sina.com.cn" name="iframe1" width="200" marginwidth="0" height="160" marginheight="0" scrolling="no" frameborder="0"> </iframe> 
<script type="text/javascript">
function jumpto(url)
{
var obj=document.getElementById("iframe1");
obj.src=url;
}
</script>
</body>