document.observe('dom:loaded', function() {
	if($F('UserCountry')!='US') {
		$('UserZip').up().hide();
	}
	$('UserCountry').observe('change', function(e) {
		if($F('UserCountry')=='US') {
			$('UserZip').up().show();
		}
	});
});
