﻿// check car_type


function car_check(){

	if(document.estimate_form.car_type.options[document.estimate_form.car_type.selectedIndex].value == "0"){
	
		if(document.estimate_form.car_weight.options[document.estimate_form.car_weight.selectedIndex].value != "0"){
			
			if(document.estimate_form.car_weight.options[document.estimate_form.car_weight.selectedIndex].value != ""){
				alert("軽自動車の場合は「自動車の種別」「車両重量」ともに「軽自動車」を選択してください。");
				document.estimate_form.car_weight.options[1].selected = true;
			}
		}
	
	}
}

function weight_check(){
	if(document.estimate_form.car_weight.options[document.estimate_form.car_weight.selectedIndex].value != "0"){
		if(document.estimate_form.car_type.options[document.estimate_form.car_type.selectedIndex].value == "0"){
			alert("軽自動車の場合は「自動車の種別」「車両重量」ともに「軽自動車」を選択してください。");
			document.estimate_form.car_type.options[1].selected = true;
			document.estimate_form.car_weight.options[1].selected = true;
		}
	}
	
}
