// Used for select-a-district feature on home page
function formHandler(){
//var URL = document.form.select.options[document.form.select.selectedIndex].value;
var URL = document.forms[2].select.options[document.forms[2].select.selectedIndex].value;
window.location.href = URL;
}
