was wondering what the variable would be.
i have a select list of urls, wondering what the process would be when you scroll down and select, then redirects to that url when you select it.
Use javascript to do this. Search "select box navigation" in google and you'll get many many examples.
this code will do what you are looking for
<form name=redirect1><select name=redirect2 onChange=location=document.redirect1.redirect2.options[document.redirect1.redirect2.selectedIndex].value > <option>select url <option value=pageurl.php>pagename <option value=pageurl.php>pagename <option value=pageurl.php>pagename <option value=pageurl.php>pagename </select></form>