function checkCountryOrState() {
	var countrySelect = document.getElementById('surveyform-country');
	var stateSelect = document.getElementById('surveyform-state');
	var province = document.getElementById('surveyform-province');
	var stateLabel = document.getElementById('label-stateorprovince');
	liveCountry = countrySelect.options[countrySelect.selectedIndex].text;
	if ( liveCountry == "United States" ) {
		stateSelect.style.display = 'inline';
		province.style.display = 'none';
		stateLabel.setAttribute('for', 'surveyform-state');
		stateLabel.innerHTML = 'State';
	} else {
		stateSelect.style.display = 'none';
		province.style.display = 'inline';
		stateLabel.setAttribute('for', 'surveyform-province');
		stateLabel.innerHTML = 'State/Region/Province';
	}
}

