You can add a simple JavaScript Jump Menu anywhere on your web page by adding the following to the source code of your web page.
| 
 <form name="jump1">
 <select name="myjumpbox" OnChange="location.href=jump1.myjumpbox.options[selectedIndex].value">
 <option selected>Jump To Page</option>
 <option value="http://www.pageone.net">Page One</option>
 <option value="http://www.pagetwo.net">Page Two</option>
 <option value="http://www.pagethree.net">Page Three</option>
 </select>
 </form>
 
 
 | 
Here is the result for you to test.