
function Form_CityListing_Browser_Go(){
  var city_link=document.getElementById('city_link');
  var ix = city_link.selectedIndex;
  if (ix > 0){
  	var city_link_value = city_link[ix].value;
    window.location = city_link_value;
  }     
	return false;
}

function Form_CountryListing_Browser_Go(){

 var country_link=document.getElementById('country_link');
 var ix = country_link.selectedIndex;
 if (ix > 0){
    var country_link_value = country_link[ix].value;
    window.location = country_link_value;
 }  
 return false;

}

