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>Select Your Destination...');
document.write('<option>*******************************');
document.write('<option value="http://www.morpheustheatre.ca">Morpheus Theatre Home Page');
document.write('<option> ');
document.write('<option>PRODUCTION LINKS');

document.write('<option value="http://www.morpheustheatre.ca/info/tickets.htm">- How to Order Tickets');
document.write('<option value="http://www.morpheustheatre.ca/info/map.htm">- Directions to Pumphouse');
document.write('<option value="http://www.morpheustheatre.ca/info/directions.htm">- Directions to Rehearsal Space');
document.write('<option value="http://www.morpheustheatre.ca/info/calendar.htm">- Production Calendar');
document.write('<option value="http://www.morpheustheatre.ca/prod/shows.htm">- Production History');
document.write('<option value="http://www.morpheustheatre.ca/news/newsletters.htm">- Newsletters');
document.write('<option> ');
document.write('<option>OTHER');
document.write('<option value="http://www.calgary-acts.com">- Calgary-Acts.com');
document.write('</select>');
document.write('&nbsp;&nbsp;');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');