// For rainbow festival form

function calculate_total()
{
	var total = 0;

	total += parseFloat(document.getElementById('donation').value);
	total += document.getElementById('float_parking').selectedIndex * 18;
	
	document.getElementById('total').value = total + '.00';
	return false;	
}

