jQuery(document).ready(function() {	
	toggleState(document.getElementById('country'));
});

function toggleState(elem) {
	if (elem.value == 233) {
		jQuery('#usstates').show();
		jQuery('#state').val('');
		jQuery('#otherstates').hide();
	} else {
		jQuery('#usstates').hide();
		jQuery('#otherstates').show();		
	}
}


