function ontario(objElement){
	//this function turns the ontario to ON
	var j=objElement.value.substring(0,3)
	if (j=="Ont"){
		objElement.value="ON"
	}
	if (j=="ont"){
		objElement.value="ON"
	}
	if (j=="ONT"){
		objElement.value="ON"
	}	
	if (j=="On"){
		objElement.value="ON"
	}
}
