you can use this Javascript:
<script language="javascript">
function jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
</script>
and in the field of the form: SLECT ... use the :
onChange="jumpMenu('parent',this,0)
while doing that u can let the page post variables throught the form to the url ..
so it'll look like :
http://yourname.com/page.php?var=value
when u change the selection :
http://yourname.com/page.php?var=NEWvalue