Oh, okay:
Code:
<select onchange="if (this.value) { top.location.href=this.value; }">
<option value=0 />Choose:
<option value="somepage.php" />Some Page
<option value="nextpage.php" />Next Page
<option value="lastpage.php" />Last Page
</select>
Similarly:
Code:
<script ...>
var pgs=new Array(null,"somepage.php","nextpage.php","lastpage.php");
</script>
<select onchange="if (this.value) { top.location.href=pgs[this.value]; }">
<option value=0 />Choose:
<option value=1 />Some Page
<option value=2 />Next Page
<option value=3 />Last Page
</select>
Badda bing!
