<select onchange="test()">
<options value="1.htm">aaa
<options value="2.htm">bbb
</select>
<iframe name="frm" src="1.htm"></iframe><script>
function test(){frm..location.href=event.srcElement.options[event.srcElement.selectedIndex].value;}
</script>