function StateClick(thevalue){
	var country = document.getElementById('country');
	if(thevalue=="Other") country.value = "";
	else country.value = "Australia";
}