function changeDrop2() {
if (document.form.Drop1.selectedIndex == 0) {
  document.form.Drop2.length = 1;
  document.form.Drop1.selectedIndex = 0
  document.form.Drop2.selectedIndex = 0
  document.form.Drop2.options[0].text = "City";
  document.form.Drop2.options[0].value = "#";
  }
// Alberta
if (document.form.Drop1.selectedIndex == 1) {
  document.form.Drop2.length = 2;
  document.form.Drop2.selectedIndex = 0
  document.form.Drop2.options[0].text = "City";
  document.form.Drop2.options[0].value = "#";
  document.form.Drop2.options[1].text = "Calgary";
  document.form.Drop2.options[1].value = "cities/al_calgary.html";
  }
// Ontario
if (document.form.Drop1.selectedIndex == 2) {
  document.form.Drop2.length = 9;
  document.form.Drop2.selectedIndex = 0
  document.form.Drop2.options[0].text = "City";
  document.form.Drop2.options[0].value = "#";
  document.form.Drop2.options[1].text = "Brampton";
  document.form.Drop2.options[1].value = "cities/on_brampton.html";
  document.form.Drop2.options[2].text = "Cambridge";
  document.form.Drop2.options[2].value = "cities/on_cambridge.html";
  document.form.Drop2.options[3].text = "Fonthill";
  document.form.Drop2.options[3].value = "cities/on_fonthill.html";
  document.form.Drop2.options[4].text = "London";
  document.form.Drop2.options[4].value = "cities/on_london.html";
  document.form.Drop2.options[5].text = "Niagara Falls";
  document.form.Drop2.options[5].value = "cities/on_niagarafalls.html";
  document.form.Drop2.options[6].text = "Oakville";
  document.form.Drop2.options[6].value = "cities/on_oakville.html";
  document.form.Drop2.options[7].text = "Ottawa";
  document.form.Drop2.options[7].value = "cities/on_ottawa.html";
  document.form.Drop2.options[8].text = "St. Catharines";
  document.form.Drop2.options[8].value = "cities/on_stcath.html";
  document.form.Drop2.options[9].text = "Welland";
  document.form.Drop2.options[9].value = "cities/on_welland.html";
  }
}
function goThere() {
if (document.form.Drop1.selectedIndex == 0) {
  alert("Please Select a Province");
  } else {
  if (document.form.Drop2.selectedIndex == 0) {
    alert("Please Select a City");
    } else {
    var list1 = document.form.Drop1;
    var list2 = document.form.Drop2;
    var theDIR = list1.options[list1.selectedIndex].value;
    var theDestination = document.form.Drop2.options[list2.selectedIndex].value;
    location.href = theDestination; }
    }
}
