function updateSelects(){
	var lst = document.hotelSearch.cityID.options.length;
	var country = document.hotelSearch.countryID.selectedIndex	
	for (i = lst; i > 0; i--) {
		document.hotelSearch.cityID.options[i] = null;
	}		
	var tot = cityArray[country].length;
	for (i = 0; i < tot; i++) {
		document.hotelSearch.cityID.options[i] = new Option(cityArray[country][i][0],cityArray[country][i][1],cityArray[country][i][2],cityArray[country][i][3]);
	}
}

function breakout_of_frame() {
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}