//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';
	}
}

//function used by text areas to limit character input
function textCounter(field, maxlimit) {
	
	var field2 = document.getElementById(field);
	if (field2.value.length > maxlimit) {
		field2.value = field2.value.substring(0, maxlimit);
		field2.scrollTop = field2.scrollHeight;
	}
}