function calculate()
{
		if (document.orderForm.type.value == "WedgeTail25" && document.orderForm.rentOrBuy.value == "Rent"){
		var bought = 0;
  	  			if (document.orderForm.updatePlan.value == "15 minute Nickel"){
  				var type = 49.00;
 	}
	  	  		if (document.orderForm.updatePlan.value == "10 minute Bronze"){
  				var type = 53.00;
 	}
	  	  		if (document.orderForm.updatePlan.value == "5 minute Silver"){
  				var type = 56.00;
 	}
	  	  		if (document.orderForm.updatePlan.value == "2 minute Gold"){
  				var type = 59.00;
 	}
	  	  		if (document.orderForm.updatePlan.value == "1 minute Platnium"){
  				var type = 62.00;
 	}
 	}
			if (document.orderForm.type.value == "WedgeTail26" && document.orderForm.rentOrBuy.value == "Rent"){
			var bought = 0;
  	  			if (document.orderForm.updatePlan.value == "15 minute Nickel"){
  				var type = 55.00;
 	}
	  	  		if (document.orderForm.updatePlan.value == "10 minute Bronze"){
  				var type = 59.00;
 	}
	  	  		if (document.orderForm.updatePlan.value == "5 minute Silver"){
  				var type = 64.00;
 	}
	  	  		if (document.orderForm.updatePlan.value == "2 minute Gold"){
  				var type = 69.00;
 	}
	  	  		if (document.orderForm.updatePlan.value == "1 minute Platnium"){
  				var type = 74.00;
 	}
 	}
				if (document.orderForm.type.value == "WedgeTail25" && document.orderForm.rentOrBuy.value == "Buy"){
				var bought = 750;
  	  			if (document.orderForm.updatePlan.value == "15 minute Nickel"){
  				var type = 17.50;
 	}
	  	  		if (document.orderForm.updatePlan.value == "10 minute Bronze"){
  				var type = 22.00;
 	}
	  	  		if (document.orderForm.updatePlan.value == "5 minute Silver"){
  				var type = 25.00;
 	}
	  	  		if (document.orderForm.updatePlan.value == "2 minute Gold"){
  				var type = 28.00;
 	}
	  	  		if (document.orderForm.updatePlan.value == "1 minute Platnium"){
  				var type = 31.00;
 	}
 	}
					if (document.orderForm.type.value == "WedgeTail26" && document.orderForm.rentOrBuy.value == "Buy"){
					var bought = 890;
  	  			if (document.orderForm.updatePlan.value == "15 minute Nickel"){
  				var type = 17.50;
 	}
	  	  		if (document.orderForm.updatePlan.value == "10 minute Bronze"){
  				var type = 22.00;
 	}
	  	  		if (document.orderForm.updatePlan.value == "5 minute Silver"){
  				var type = 25.00;
 	}
	  	  		if (document.orderForm.updatePlan.value == "2 minute Gold"){
  				var type = 28.00;
 	}
	  	  		if (document.orderForm.updatePlan.value == "1 minute Platnium"){
  				var type = 31.00;
 	}
 	}

var trucks = document.orderForm.noOfVehicles.value;
if (bought == 0){
var result = trucks*type;
document.orderForm.total.value="$"+result+" per month";
} else {
var result = trucks*((type*24)+bought);
document.orderForm.total.value="$"+result;
}
var pay = trucks*((type*3)+bought);
document.orderForm.payToday.value="$"+pay;
}