function checkform(){
if(document.form1.name.value == 'Ваше имя')
	{
	alert ('Вы не ввели имя');
	return false;
	}
	
		var at="@"
		var dot="."
		var lat=document.form1.email.value.indexOf(at)
		var lstr=document.form1.email.value.length
		var ldot=document.form1.email.value.indexOf(dot)
		if (document.form1.email.value.indexOf(at)==-1){
		   alert("Ошибка!Введен неверный адрес электронной почты...")
		   return false
		}
		if (document.form1.email.value.indexOf(dot)==-1 || document.form1.email.value.indexOf(dot)==0 || document.form1.email.value.indexOf(dot)==lstr){
		    alert("Введен неверный адрес электронной почты...")
		    return false
		}
		if(lstr < 8){
		   alert("Ошибка! Введен неверный адрес электронной почты...")
		   return false
		}

else	
return true;
}

function chprice(){
if(document.form2.group.value == '0') document.form2.price.value = '0';
if(document.form2.group.value == 'A') document.form2.price.value = '8000';
if(document.form2.group.value == 'B') document.form2.price.value = '10000';
if(document.form2.group.value == 'C') document.form2.price.value = '10000';
if(document.form2.group.value == 'D') document.form2.price.value = '10000';
if(document.form2.group.value == 'E') document.form2.price.value = '10000';
if(document.form2.group.value == '2') document.form2.price.value = '12000';
if(document.form2.group.value == '3') document.form2.price.value = '14000';
if(document.form2.group.value == '4') document.form2.price.value = '16000';
if(document.form2.group.value == '5') document.form2.price.value = '18000';
}
