<!--
$(document).ready(function(){
	//Hide The Non JS Button					   
	$('#getTotal').hide();
	
	//Add the following to the Select Menu	
	$("#delivery").change(function () {
		//("Script To Post To",{variable to post as:""+$("what to post")
		$.post("include/ajax/ajax-delivery.php",{delivery:""+$("#delivery option:selected").attr("value")+""},
			function(data) { 
				if(data.length > 0) { 
					//Evaluate Json Encoded Array
					var jsonObj = eval('(' + data + ')');
					if (jsonObj[0] == 0.00) {
						$("#deliveryRate").text("FREE!");
					} else {
						$("#deliveryRate").text("\u00A3"+jsonObj[0]);
					}
					$("#totalCost").text("\u00A3"+jsonObj[1]);
				} else { 
					alert("The P&P Could Not Be Generated. Please try again or Contact Us!");
				}
		});
	});
});
-->