Hi Lawrence,
There is no way to make "pull down menu" in Photoshop. You have to use some HTML editor to edit the HTML file.
Below is a simple code of pull down menu:
<form name="form">
<select name="menu">
<option value="http://yourwebsitename.com/home.html">home</option>
<option value="http://yourwebsitename.com/about.html">about</option>
<option value="http://yourwebsitename.com/contact.html">contact</option>
</select>
<input type="button" onClick="location=document.form.menu.options[document.form.menu.selectedIndex].value;" value="GO" />
</form>
Copy the code between the BODY tags of your HTML document.
Replace “http://yourwebsitename.com/contact.html ...†with the path to your own web pages.
If you need different kind or more complicated menu we can help you.
Good luck!