function estimatePrice (type) {
	var annual = 0;
	if (type == 'tournament') {
		var tP = parseInt($('#tournamentPlayerCount').val()); <!--- tP = total players, fP = fullPrice, sF = seaason --->
		var nonP = $('#tournamentNonProfit').is(':checked');
	} else {
		var tP = parseInt($('#leaguePlayerCount').val()); <!--- tP = total players, fP = fullPrice, sF = seaason --->
		var nonP = $('#leagueNonProfit').is(':checked');
	}
	var sF = 0;
	if (isNaN(tP) == true)
		tP = 0;
	var fP = 3;
	if (nonP)
		fP = 1.25;
	sF = (tP * fP);

	var total = sF + annual;
	if (type == 'tournament') {
		$('#tournamentPlayerFee').html(fP.toFixed(2));
		$('#tournamentPlayerTotalFee').html(sF.toFixed(2));
		$('#tournamentSeasonFee').html(total.toFixed(2));
	} else {
		$('#leaguePlayerFee').html(fP.toFixed(2));
		$('#leaguePlayerTotalFee').html(sF.toFixed(2));
		$('#leagueSeasonFee').html(total.toFixed(2));
	}
	return false;
}