$(document).ready(function()
{
	$("#adv").submit(function()
	{
		ret=false;
		if ($(this).find("#adv_cont_tel").val()!='') { ret=true; }
		if ($(this).find("#adv_cont_mail").val()!='') { ret=true; }
		if (
				($(this).find("#adv_cont_http").val()!='')&&
				($(this).find("#adv_cont_http").val()!='http://')
			) { ret=true; }
		if ($(this).find("#adv_cont_adress").val()!='') { ret=true; }

		if (!ret)
		{
			alert("Пожалуйста, заполните хотябы одно поле контактной информации");
		}
		return ret;
	});
	
	$(".adv_dop_gorod_a").live("click", function()
	{
		var adv_last_gorod_div=$(this).closest(".forma_blok").prev().clone().hide();
		$(adv_last_gorod_div).find(".vipad").forma_vipad().find(".vipad_input").val("");
		$(adv_last_gorod_div).find(".vipad_row").removeClass("vipad_selected").show();
		$(this).closest(".forma_blok").before(adv_last_gorod_div);
		$(this).closest(".forma_blok").prev().slideDown(150);
	});
});