function country_change(){

country_id = document.country.country_id.options[document.country.country_id.selectedIndex].value;

if (!(country_id=="#")) { 

hotels = "/" + "hotels-" + country_id + "-code.htm";

window.frames['hotelchange'].window.location.replace(hotels);
}
    }
    

