jQuery(function(){
	jQuery("#step_1").submit(function(){
	   if (jQuery("#destination_id").val()!="NULL")
	   {
	     return true;
	   }
	   var errorMessage = _msg_eroare+_msg_destination_id;
	   jQuery(".submit").removeClass("loading");
	   alert(errorMessage);
	   return false;
	});
});