


function updatePrices() {


var postdata = $('#mtmoptions').serialize();


$.ajax({
   'url': '/ajax_price.php',
   'data' : postdata,
   'datatype': 'data',
   'type': 'POST',
   'success' : function(data){
               $('#price_madetomeasure').val('£'+data);
				$('#mtmtotalprice').text('Total: £'+data+' (inc VAT)');
				}
	 
});



return false;


}


$(document).ready(function() {

	$('#option_opt0').change( function(){ updatePrices()});
	$('#option_opt2').change( function(){ updatePrices()});
	$('#option_opt3').change( function(){ updatePrices()});
	$('#louvres_Weights').click( function(){updatePrices()});
	$('#louvres_Chains').click( function(){updatePrices()});


});

