if (getCookie("countryIndex") != null)
	document.forms[0].drpCountry.selectedIndex = getCookie("countryIndex");
if (getCookie("cityIndex") != null)
	document.forms[0].drpCity.selectedIndex = getCookie("cityIndex");
if (getCookie("nationality") != null)
	document.forms[0].drpNationality.selectedIndex = getCookie("nationality");
if (getCookie("roomNumber") != null)
	document.forms[0].drpRoom.selectedIndex = getCookie("roomNumber");
if (getCookie("adultNumber") != null)
	document.forms[0].drpAdult.selectedIndex = getCookie("adultNumber");
if (getCookie("childNumber") != null)
	document.forms[0].drpChild.selectedIndex = getCookie("childNumber");

changeSetting();

if (getCookie("childAge0") != null && document.getElementById("txtAge0") != null)
		document.getElementById("txtAge0").value = getCookie("childAge0");
if (getCookie("childAge1") != null && document.getElementById("txtAge1") != null)
		document.getElementById("txtAge1").value = getCookie("childAge1");
if (getCookie("childAge2") != null && document.getElementById("txtAge2") != null)
		document.getElementById("txtAge2").value = getCookie("childAge2");
if (getCookie("childAge3") != null && document.getElementById("txtAge3") != null)
		document.getElementById("txtAge3").value = getCookie("childAge3");
if (getCookie("childAge4") != null && document.getElementById("txtAge4") != null)
		document.getElementById("txtAge4").value = getCookie("childAge4");
if (getCookie("childAge5") != null && document.getElementById("txtAge5") != null)
		document.getElementById("txtAge5").value = getCookie("childAge5");
