function menu_goto( menuform )
{
  var baseurl = 'http://www.homeevaluation.ca/cities/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="search" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="">Select a City</option>' );
document.writeln( '<option value="bc_abbotsford.html">Abbotsford</option>' );
document.writeln( '<option value="bc_burnaby.html">Burnaby</option>' );
document.writeln( '<option value="bc_chilliwack.html">Chilliwack</option>' );
document.writeln( '<option value="bc_coquitlam.html">Coquitlam</option>' );
document.writeln( '<option value="bc_courtenay.html">Courtenay</option>' );
document.writeln( '<option value="bc_cranbrook.html">Cranbrook</option>' );
document.writeln( '<option value="bc_delta.html">Delta</option>' );
document.writeln( '<option value="bc_fortstjohn.html">Fort St. John</option>' );
document.writeln( '<option value="bc_kamloops.html">Kamloops</option>' );
document.writeln( '<option value="bc_kelowna.html">Kelowna</option>' );
document.writeln( '<option value="bc_langford.html">Langford</option>' );
document.writeln( '<option value="bc_langley.html">Langley</option>' );
document.writeln( '<option value="bc_mapleridge.html">Maple Ridge</option>' );
document.writeln( '<option value="bc_mission.html">Mission</option>' );
document.writeln( '<option value="bc_nanaimo.html">Nanaimo</option>' );
document.writeln( '<option value="bc_newwestminster.html">New Westminster</option>' );
document.writeln( '<option value="bc_northvancouver.html">North Vancouver</option>' );
document.writeln( '<option value="bc_penticton.html">Penticton</option>' );
document.writeln( '<option value="bc_portalberni.html">Port Alberni</option>' );
document.writeln( '<option value="bc_portcoquitlam.html">Port Coquitlam</option>' );
document.writeln( '<option value="bc_portmoody.html">Port Moody</option>' );
document.writeln( '<option value="bc_princegeorge.html">Prince George</option>' );
document.writeln( '<option value="bc_richmond.html">Richmond</option>' );
document.writeln( '<option value="bc_saanich.html">Saanich</option>' );
document.writeln( '<option value="bc_surrey.html">Surrey</option>' );
document.writeln( '<option value="bc_vancouver.html">Vancouver</option>' );
document.writeln( '<option value="bc_vernon.html">Vernon</option>' );
document.writeln( '<option value="bc_victoria.html">Victoria</option>' );
document.writeln( '<option value="bc_whiterock.html">White Rock</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );
