function check_form_om(){
	if(document.getElementById("name").value == false || document.getElementById("phone").value == false || document.getElementById("email").value == false || (document.getElementById("aromatic_notes").value == false && document.getElementById("service_notes").value == false)){
		window.alert("Поля, обязательные для заполнения, пусты!");
		return false;
	}
	return true;
}
function radioSertAroma_om(divWorkingName){
	document.getElementById('div_aromatic_notes').style.display = 'block';
	document.getElementById('div_service_notes').style.display = 'none';
	//const_om(divWorkingName);
}
function radioSertService_om(divWorkingName){
	document.getElementById('div_aromatic_notes').style.display = 'none';
	document.getElementById('div_service_notes').style.display = 'block';
	//const_om(divWorkingName);
}
