var xmlHttp = new XMLHttpRequest();
function getCity5()
{
	xmlHttp.open('get','getcity2.php?id='+ document.Flatsearch.country.value);
	xmlHttp.onreadystatechange = handleInfo5;
	xmlHttp.send(null);
}

function handleInfo5()
{
	if(xmlHttp.readyState == 1)
	{
		document.getElementById('main15').innerHTML = '<img src="images/loading-anim.gif">';
	}

	else if(xmlHttp.readyState == 4)
	{
		var response = xmlHttp.responseText;
		document.getElementById('main15').innerHTML = response;
	}
}


