function submit(type) {
  area_href = document.getElementById('larea').options[document.getElementById('larea').selectedIndex].value
  if(area_href=="All Regions")area_href = ""
  town_href = document.getElementById('ltown').options[document.getElementById('ltown').selectedIndex].value
  if(type==null)type_href = document.getElementById('category').options[document.getElementById('category').selectedIndex].value
  else type_href = type
  town_href = town_href.replace(/\s/g, "")
  town_href = town_href.toLowerCase()
  temp_town = town_href.substring(0,5)
  if(town_href == "garmouth&kingston")town_href = "garmouth"
  else if(town_href == "isleofarran")town_href = "arran"
  else if(town_href == "grantown-on-spey")town_href = "grantownonspey"
  else if(town_href == "isleofskye")town_href = "skye"
  else if(town_href == "isleofbarra")town_href = "barra"
  else if(town_href == "st.kilda")town_href = "stkilda"
  else if(temp_town == "johno")town_href = "johnogroats"
  else if(town_href == "st.abbs")town_href = "stabbs"

  if(town_href != ""){
    location.href = "/visit/scotland-"+type_href+"-"+area_href+"-"+town_href+".html"
  }else if(area_href != ''){
    location.href = "/visit/scotland-"+type_href+"-"+area_href+".html"
  }else{
    location.href = "/visit/scotland-"+type_href+".html"
  }
}
function reset(){
  document.getElementById('larea').selectedIndex = 0
  document.getElementById('ltown').options.length = 1;
  document.getElementById('category').selectedIndex = 0
}