		function weryfikuj()
		{
			var incomming = $('#incomming-year > option:selected').html() + "-" + $('#incomming-month > option:selected').html() + "-" + $('#incomming-day > option:selected').html();
			var exit = $('#exit-year > option:selected').html() + "-" + $('#exit-month > option:selected').html() + "-" + $('#exit-day > option:selected').html();
			document.sampleform.firstinput.value=incomming;
			document.sampleform.secondinput.value=exit;
		var jest_ok;
		jest_ok=true;

		if (document.sampleform.imie.value=="")
		{
		alert('Proszę podać imię!!!');
		jest_ok=false;
		} else
                if (document.sampleform.nazwisko.value=="")
		{
		alert('Proszę podać nazwisko!!!');
		jest_ok=false;
		} else
		if (document.sampleform.email.value=="")
		{
		alert('Proszę podać adres mailowy!!!');
		jest_ok=false;
		} else
		if (document.sampleform.zapytanie.value=="")
		{
		alert('Proszę wpisać treść zapytania!!!');
		jest_ok=false;
		} else
		if (document.sampleform.data_wygasniecia.value=="")
		{
		alert('Proszę podać datę wygasniecia ogoszenia!!!');
		jest_ok=false;
		} else
		if (document.sampleform.godz_wygasniecia.value=="")
		{
		alert('Proszę podać godzinę wygaśniecia ogoszenia!!!');
		jest_ok=false;
		}
		return jest_ok;
		}