<script language="javascript">
function refreshIframe(obj){
  window.frames("ifrm").src="a.asp?t=" + obj.value
}
</script>
<!--左边的下拉选框-->
<select name="selType" onchange="refreshIframe(this)">
<option value="1">1</option>
<option value="2">2</option>
</select><!--右边的Iframe-->
<iframe id="ifrm" src="a.asp?t=1"></iframe>