function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

document.write('<form name="form">');
document.write('<select name="site" size=1>');
document.write('<option value="">Select a Page to Visit');
document.write('<option value="http://astropro.us/index.html">Astral*Star Profiles - Home');
document.write('<option value="http://astropro.us/profiles.html">Astrological Service');
document.write('<option value="http://astropro.us/order.html">Profile Order Page');
document.write('<option value="http://astropro.us/astro/astro.html">Astrological Compendium');
document.write('<option value="http://astropro.us/inspirations.html">Daily Inspirations');
document.write('<option value="http://astropro.us/books-astro.html">Astrology Books');
document.write('<option value="http://astropro.us/mall.html">Astral*Star Mall');
document.write('<option value="http://astropro.us/gifts.html">Gift Shoppe');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');