function check(id) {
var fio=document.getElementById('fio');
var tel=document.getElementById('tel');
var email=document.getElementById('email');
var date1=document.getElementById('sel1');
var date2=document.getElementById('sel2');
var kod=document.getElementById('kod');

if (fio.value == "") 
{
	alert ("Введите ФИО");
	fio.focus();
	return (false);
}
if (tel.value == "") 
{
	alert ("Введите Телефон");
	tel.focus();
	return (false);
}
if (email.value == "") 
{
	alert ("Введите E-mail");
	email.focus();
	return (false);
}
if (date1.value == "") 
{
	alert ("Введите Время приезда");
	date1.focus();
	return (false);
}
if (date2.value == "") 
{
	alert ("Введите Время отъезда");
	date2.focus();
	return (false);
}
if (kod.value == "") 
{
	alert ("Введите Код указанный  на картинке");
	kod.focus();
	return (false);
}
}

