	function GetCity(state) {
		jQuery('#sign_city').removeOption(/^[1-9]+[0-9]*$/);
		jQuery('#sign_city').attr('disabled', true);
		if (state > 0) {
			jQuery('#cityLoader').html('<img src="/ajax-loader.gif" />');
			jQuery('#sign_city').ajaxAddOption('/popieram/get_city.php', {state: state}, false, function() {
				jQuery(this).attr('disabled', false);
				jQuery('#cityLoader').html('');
			});
		}
	}

