$(document).ready(function(){
	$('#name_error').hide();
	$('#email_error').hide();
	$('#prov_error').hide();
	$("#coun_error").hide();

	  $("#submit_btn").click(function() {
		 if ($("input#name").val() == "") {
			$("#name_error").show();
			$("input#name").focus();
			return false;
		  } 
		  if ($("input#tkyue-tkyue").val() == "") {
			$("#email_error").show();
			$("input#tkyue-tkyue").focus();
			return false;
		  }  
		   if ($("#fo-sthid").val() == "") {
			$("#prov_error").show();
			$("select#fo-sthid").focus();
			return false;
		  }
		  if ($("#fo-glyv").val() == "") {
			$("#coun_error").show();
			$("select#fo-glyv").focus();
			return false;
		  }
	 });
  }); 