Forum Moderators: phranque
Is it something like this you are looking for?
<select name="nav" onChange="go()">
<option>Please Select</option
<option value="here.html">First Page</option>
<option value="there.html">Second Page</option
</select>
function go(){
box = document.forms[0].nav;
destination = box.options[box.selectedIndex].value;
if (destination) location.href = destination;
}
HTH,
-George