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" class=menubox size=1 onChange="javascript:formHandler()">');
document.write('<option value="index.htm">...Menu...');
document.write('<option value="javascript:history.go(-1);">...Previous Page...');
document.write('<option value="celticfestival.htm">Celtic Festival');
document.write('<option value="education.htm">Education');
document.write('<option value="familyy.htm">Family Y');
document.write('<option value="festival.htm">Festival of Northern Lights');
document.write('<option value="health.htm">Health Care');
document.write('<option value="symphony.htm">Georgian Bay Symphony');
document.write('<option value="georgian.htm">Georgian College');
document.write('<option value="jrhockey.htm">Junior Hockey');
document.write('<option value="citymuseums.htm">Museums');
document.write('<option value="publiclibrary.htm">Public Library');
document.write('<option value="roxytheatre.htm">Roxy Theatre');
document.write('<option value="summerfolk.htm">Summerfolk');
document.write('<option value="artgallery.htm">Tom Thomson Art Gallery');
document.write('<option value="index.htm">Intro');
document.write('</select>');
document.write('</form>');
