function validStateCode(theState) {
	if (theState.length > 3 || theState.length < 2 ) {
		return false;
	}
	return true;
}

