function dropstate(){
var defin1 = document.getElementById("reason");
var define2 = document.getElementById("extraBtn");
	if(defin1.options[defin1.selectedIndex].value == "else"){
		$("#extraBtn").attr("innerHTML", '<input type="text" name="extrareason" size="20"/>');
		$("#extraBtn").show("slow");
	}else{
		$("#extraBtn").hide("slow");
	}
}

function subMit(){
var parametri1 = $("input").serialize();
var parametri2 = $("textarea").serialize();
var parametri3 = $("select").serialize();
var link = parametri1 + "&" + parametri2 + "&" + parametri3;
	$.ajax({   
	  type: "POST",   
	  url: "send.php",   
	  data: link,   
	  success: function(msg) {
 
	  	if(msg.indexOf("error")>0){
			alert("فشلت عملية الارسال، يرجى الاتصال بالمدير العام للموقع بشكل مباشر على المسنجر nooraliisa@hotmail.com --- 39895253/33199423 --- 00973-39895253/00973-33199423");
			window.location = "index.php";
		} 
		
		if(msg.indexOf("success")>0){
			alert("تم الارسال بنجاح، شكرا لاتصالكم بنا .. وسوف يتم الرد عليكم قريبا بإذن الله");
			window.location = "index.php";
		} 
		setTimeout(msgAreaShow, 1000);
		function msgAreaShow(){
			$("#msg").attr("class", "wrong");
			$("#msg").hide();
			$("#msg").show("slow");
			$("#msg").attr("innerHTML", msg);   
		}
	  }   
	});
return false;	
}

$(document).ready(function(){
	$("#msg").ajaxStart(function(){
		$(this).attr("class", "right2");
		$(this).attr("innerHTML", "<img border=\'0\' src=\'img/misc/loading_small.gif\' alt=\'\'>");   
		$(this).show();
	});
	$("#msg").hide();
	$("#sendingForm").submit(function(){
		subMit();
		return false;
	});
	
});

