$(document).ready(function () {
	
	calculateRate();
	
});

calculateRate = function(){
	var hoursPerMonth = $("#hoursPerMonth").val();
	var numOfMonths = $("#numOfMonths").val();

	$.getJSON("/model/remote/RemoteRateService.cfc?method=getTfRate&returnformat=plain&hoursPerMonth=" + hoursPerMonth + "&numOfMonths=" + numOfMonths, handleRate);
}

handleRate = function(rate){
	$("#tfRate").text(rate);
}
