function clearSearchText() {
	if (document.searchForm.searchtext.value == ' This region'){
		document.searchForm.searchtext.value = '';		
	}
}
	
function setSearchText() {
	if (document.searchForm.searchtext.value == ''){
		document.searchForm.searchtext.value = ' This region';		
	}
}
function listSelect(thislist) {
	var thisitem = thislist.selectedIndex;
	if (thisitem != 0) {
		if (thislist.options[thisitem].value != '') {
			thislist.selectedIndex = 0;
			document.location.href='' + thislist.options[thisitem].value;
		}
	}
}
