$(document).ready(function(){
	
	calcula();
	$('.fr').change(function(){
		calcula();
	});
	
});

function calcula(){
	
	$.post('calculadora/calculadora/',$("#form_calculadora").serialize(),function(retorno){
		$("#total_calculadora").html(retorno);
	});
}
