//This javascript is used by pages that have a location section in a form

//Function to show or hide zipcode form field
function check_for_zip(value_country){
	zip_input = document.getElementById('rfi_zipcode');
	if (value_country == "United States" || value_country == "Canada") {
		document.getElementById('zipcode_span').style.display = '';
	}
	else {
		document.getElementById('zipcode_span').style.display = 'none';
	}
}