function check_form()
{
	if(!$(".customer").val() || !$(".responsible").val() || !$(".phone").val() || !$(".email").val() || !$(".address").val())
	{
		$(".app_info").html("<span style='color:#fb041b;'>Вы не заполнили обязательные поля</span>");
		return false;
	}
	
	return true;
}
