//synchronising state and country value
function adjustState(sourceCountry, targetState) {
	if (sourceCountry.value != "us") {
		targetState.value = "OTHER";
	}
};

//synchronising country and state value
function adjustCountry(sourceState, targetCountry) {
	if (sourceState.value != "OTHER") {
		targetCountry.value = "us";
	}
};
