Create Pull Down Menu
<FORM NAME="myform">
<SELECT NAME="mylist">
<OPTION VALUE="here.html" >Here
<OPTION VALUE="there.html">There
<OPTION VALUE="anywhere.html">Anywhere
</SELECT>
<INPUT TYPE="button" VALUE="Go" onClick="location.href = myform.mylist.options[myform.mylist.selectedIndex].value">
</FORM>
It will be like this :
Nb : Change "here.html", "there.html",and "anywhere.html" with your URL page for be the content of menu.