

var countryID = 0;
function showDistricts(countrylist)
	{
	//HIDE OLD COUNTRY REGIONS
	if (countryID > 0)
		{
		document.getElementById('C'+countryID).style.display = 'none';	
		}
	//SET AND APPLY NEW COUNTRY ID
	countryID = countrylist.options[countrylist.selectedIndex].value;
	if (countryID > 0)
		{
		document.getElementById('C'+countryID).style.display = 'block';	
		}
	}



function showSearchOption()
	{
	if (eval(document.getElementById('countries')) != undefined)
		{
		showDistricts(document.getElementById('countries'))
		}
	}
