function checkOrder(){
	if(jsTrim(NewsForm.stage1.value)==0){
		alert("请选择服务内容！");
		NewsForm.stage1.focus();
		return false;
	}
	if (jsTrim(NewsForm.stage2.value)==0){
		alert("请选择服务项目！");
		NewsForm.stage2.focus();
		return false;
	}
	/*
	if (jsTrim(NewsForm.stage3.value)==0){
		alert("请选择收费标准！");
		NewsForm.stage3.focus();
		return false;
	}
	*/
	if (jsTrim(NewsForm.email.value)==""){
		alert("请输入您的Email地址！");
		NewsForm.email.focus();
		return false;
		}	
	
	if (!isEmail(NewsForm.email.value)){
		alert("Email 错误！请重新输入");
		NewsForm.email.focus();
		return false;
	}

	if (!isTel(NewsForm.tel.value)){
		alert("电话错误！请重新输入！");
		NewsForm.tel.focus();
		return false;
	}

	if (jsTrim(NewsForm.payerName.value)==""){
		alert("请输入支付人信息！");
		NewsForm.payerName.focus();
		return false;
	}

	if (NewsForm.stage2.value==28 && jsTrim(NewsForm.other.value)==""){
		alert("请填写正确的服务费用！");
		NewsForm.other.focus();
		return false;
	}

	if (jsTrim(NewsForm.other.value)!=""){
		if(parseFloat(NewsForm.other.value)<0){
			alert("请填写正确的服务费用！");
			NewsForm.other.focus();
			return false;
		}
	/*	if(!isNumber(NewsForm.other.value)){
			alert("请填写正确的服务费用！");
			NewsForm.other.focus();
			return false;
		}else if(NewsForm.other.value<0){
			alert("请填写正确的服务费用！");
			NewsForm.other.focus();
			return false;
		}
	*/
	}

	NewsForm.proName.value=getXGroupName(NewsForm.stage1.value,0)+getXGroupName(NewsForm.stage2.value,0);
//	NewsForm.price.value=getXGroupName(NewsForm.stage3.value,0);
	
	if(NewsForm.stage2.value==25){
		NewsForm.price.value="58880元";
	}else if(NewsForm.stage2.value==26){
		NewsForm.price.value="8880元";
	}else if(NewsForm.stage2.value==27){
		NewsForm.price.value="5880元";
	}else if(NewsForm.stage2.value==28){
		NewsForm.price.value=NewsForm.other.value+"元";
	}
	
	document.NewsForm.submit();
}

//其他服务费用
function isOtherPay(selValue){
	if(selValue==28){
		document.getElementById("otherPay").style.display="";
		NewsForm.price.value=NewsForm.other.value+"元";
	}else{
		NewsForm.other.value="";
		document.getElementById("otherPay").style.display="none";
	}
}