	function formKuldes(form){
		$.ajax({
		   type: "POST",
		   url: $(form).attr("action"), 
		   data: $(form).serialize(),
		   error: function(msg) {
			   		$("#eredmeny").html('hiba');
			    },
		   success: function(msg){
			   		$("#eredmeny").html(msg);
		   }})}
