					function updatePrice(){
						// var selIndex = document.forms[0].tour.seletedIndex;
						// tour.options[selIndex].value		
						
						people = document.forms[0].people[document.forms[0].people.selectedIndex].text;
						
						if (people == 'More')
						{
							document.forms[0].totalamount.value = 'TBA';
						} 
						
						else{
						
						switch (document.forms[0].tour[document.forms[0].tour.selectedIndex].text)
						{
	 			     	  case "Hunter Valley Wine Tour - $110":
						  document.forms[0].totalamount.value = 110 * parseInt(people);
						  break

  	 			     	  case "Hunter Valley Wine Tour with Cafe Lunch - $125":
						 	document.forms[0].totalamount.value = 125 * parseInt(people);
						  break
						  
						  case "Hunter Valley Wine Tour with Gourmet Lunch - $165":
						 	document.forms[0].totalamount.value = 165 * parseInt(people);
						  break
						  
						  case "Boutique Mountain Tours, Blue Mountains - $145":
						 	document.forms[0].totalamount.value = 145 * parseInt(people);
						  break
						  
						  case "Boutique Wildlife Tours, Southern Highlands - $295":
						 	document.forms[0].totalamount.value = 295 * parseInt(people);
						  break
						  
						  case "Boutique Experiences Package - $495":
						 	document.forms[0].totalamount.value = 495 * parseInt(people);
						  break
						 				
						}
						}	
						}
						
					function loadPage(){

						switch (document.forms[0].bookingType[document.forms[0].bookingType.selectedIndex].text)
						{
	 			     	  case "Book a Tour":
						  window.location = "https:/www.boutiquewinetours.com.au/booking.cfm";
						  break
						  
						  case "Purchase a Gift Voucher":
						  window.location = "booking_voucher.cfm";
						  break
						  
						   case "Book a Private Charter":
						  window.location = "booking_private.cfm";
						  break
						  
						   case "Book a Tour with Accommodation":
						  window.location = "booking_accommodation.cfm";
						  break

						  }
					
					}
