
function loadLocations(countyMenuName,resortMenuName,countryMenuValue,resortMenuValue){

	SetCountries(countyMenuName,countryMenuValue)
	SetLocationsByCountry(countryMenuValue,resortMenuName,resortMenuValue)
}

function loadCountry(countyMenuName,countryMenuValue){
	SetCountries(countyMenuName,countryMenuValue)
}


function AddOption(menu,name,value,index_value){
	document.getElementById(menu).options[index_value] = new Option(name,value)
}

function RemoveOption(menu,name,value,index_value){
	document.getElementById(menu).options[index_value] = null
}

function resetLocations(y){
	x = document.getElementById(y).length
	rl = 0

	for (rl = 0; rl <x; rl++){
		var cl = x - rl
		RemoveOption(y,"","",cl)
	}
	AddOption(y,"Choose a Location","",0)
}

