function postThisForm(){
	var theForm = document.getElementById('form2')
	if(theForm.itemType.value==1){
		theForm.action = "tours.php"
	}else{
		theForm.action = "packet.php"
	}
	theForm.submit();
}

