  function ChangeLocation()
  {
    var index = document.getElementById('type').selectedIndex;
    
    if (document.getElementById('type').options[index].value != "-1") 
      window.location = "http://www.safir.is/?i=5&expand=1-5&type=" + document.getElementById('type').options[index].value;
  }

