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="alberta.html">Alberta');
document.write('<option value="britishcolumbia.html">British Columbia');
document.write('<option value="manitoba.html">Manitoba');
document.write('<option value="newbrunswick.html">New Brunswick');
document.write('<option value="newfoundland.html">Newfoundland');
document.write('<option value="northwestterr.html">North West Terr.');
document.write('<option value="novascotia.html">Nova Scotia');
document.write('<option value="nunavut.html">Nunavut');
document.write('<option value="ontario.html">Ontario');
document.write('<option value="pei.html">Prince Edward Island');
document.write('<option value="quebec.html">Quebec');
document.write('<option value="saskatchewan.html">saskatchewan');
document.write('<option value="yukon.html">Yukon');
document.write('<option value="canada.html">BACK');



document.write('</select>  ');

document.write('<input type=button value="GO TO" onClick="javascript:formHandler()">');
document.write('</form>');