function check_order_info_checked(form){
	
	if(form.agree.checked == false){
		alert('Please agree with terms');
		return false;
	}
	return true;
}
