OK, put this in your <head> tags:
Code:
<script>
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
</script>
<script>
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
</script>
And this in your <select> option which is in your forms:
Code:
onChange="MM_jumpMenu('parent',this,0)"
e.g:
<select name="select6" onChange="MM_jumpMenu('parent',this,0)">
Understand now?