
		function lotniska(id){
		$.ajax({
			type: "GET",
			url: "./pages/select.php",
			data: 	"skrot=" + document.getElementById("airport").value+
					"&id=" + id,
			//+ 
			//		"&email=" + document.getElementById("email").value,
			success: function(html){
				$("#response").html(html);
			}
		});
		
		}