function updateSelects(){
	var lst = document.propSearch.townID.options.length;
	var country = document.propSearch.regionID.selectedIndex	
	for (i = lst; i > 0; i--) {
		document.propSearch.townID.options[i] = null;
	}		
	var tot = townArray[country].length;		
	if (townArray[country].length == 0) {
		document.propSearch.townID.options[0] = new Option('--Any Town--', 0,1,1);
	} else {
		for (i = 0; i < tot; i++) {
			document.propSearch.townID.options[i] = new Option(townArray[country][i][0],townArray[country][i][1],townArray[country][i][2],townArray[country][i][3]);
		}		
	}
}