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 onChange="javascript:formHandler()">');
document.write('<option value="http://www.brucecas.ca/index.html">Quick Find');
document.write('<option value="http://www.brucecas.ca/news/index.html">Whats New');
document.write('<option value="http://www.brucecas.ca/employment.html">Employment');
document.write('<option value="http://www.brucecas.ca/faq.html">FAQ');
document.write('<option value="http://www.brucecas.ca/contact.html">Contact');
document.write('<option value="http://www.brucecas.ca/abuse.html">Reporting Abuse');
document.write('<option value="http://www.brucecas.ca/fostering.html">Foster Parenting');
document.write('<option value="http://www.brucecas.ca/links.html">Links');
document.write('<option value="http://www.brucecas.ca/index.html">Home');
document.write('</select>');
document.write('</form>');
