http://www.perlmonks.org?node_id=769878


in reply to Re: drop down menus with CGI/Perl
in thread drop down menus with CGI/Perl

Try this code :
<P>Choose your destination :<BR><BR> <select name="select" onchange="document.location.href=this.options[th +is.selectedIndex].value;"> <option value="http://google.com">optionA</option> <option value="http://yahoo.com">optionB</option> <option value="http://msn.com">optionC</option> </select>
Regds Vivek