function Checksel(form1)
{
   //window.alert(form1.selProvince.value);
	if(form1.selProvince.value == ""){
		window.alert("请您选择球队所在的省份!");
		return false;
	}
	
	if(form1.selCity.value == ""){
		window.alert("请您选择球队所在的城市!");
		return false;
	}
	if(form1.selCan.value == ""){
		window.alert("请您选择球队所在的餐厅!");
		return false;
	}
	if(form1.selTeam.value == ""){
		window.alert("请您选择要支持的球队!");
		return false;
	}
}

function checkinput_index(form1)
{
   //window.alert("哈哈");
	//window.alert(form1.strDesc.value);
	//window.alert(document.form1.selProvince.options[].value);
	//xmlDoc.document.getElementById("selProvince")
	//alert(document.form1.selProvince.options[document.form1.selProvince.selectedIndex].text);
	if (document.form1.selProvince.options[document.form1.selProvince.selectedIndex].text == "请选择"){
		window.alert("请选择您搜索的球队所在的省!");
		return false;
	}
	
	if (document.form1.selCity.options[document.form1.selCity.selectedIndex].text == "请选择"){
		window.alert("请选择您搜索的球队所在的市!");
		return false;
	}

	
	if (document.form1.selCan.options[document.form1.selCan.selectedIndex].text == "请选择"){
		window.alert("请选择您搜索的球队所在的餐厅!");
		return false;
	}
	
		if (document.form1.selTeam.options[document.form1.selTeam.selectedIndex].text == "请选择"){
		window.alert("请选择您搜索的球队!");
		return false;
	}


	return true;
}

function process_bb_index(form1)
{
	if (!checkinput_index(form1))
	{
		return false;
	}
	//preprocess(form1);

	return true;
}




