	function price(form) {
	var total=0;
	if (form.design[0].checked) total=total+5400;
	if (form.design[1].checked) total=total+19000;
	if (form.imagaz[0].checked) total=total+10000;
	if (form.imagaz[1].checked) total=total+18000;
	if (form.novost.checked) total=total+670;
	if (form.fotogal.checked) total=total+2900;
	if (form.poisk.checked) total=total+2100;
	if (form.calc.checked) total=total+1500;
	if (form.online.checked) total=total+1200;
	if (form.flash.checked) total=total+3000;
	if (form.rolik.checked) total=total+9000;
	if (form.menu.checked) total=total+5700;
	if (form.make.checked) total=total+6000;
	
	document.getElementById("price").innerHTML=total;
	}
