
	jQuery(function($)
	{
		$('select').change(function()
		{
			$('#courcePrice').text(cource[$(this).val()]);
			$('#can_do_part2').change();
		}).change();


		$('#can_do_part2').change(function()
		{
			if ($(this).attr('checked') == true) {
				$('#partTwoPrice').text(partTwo[$('#country').val()]);
				$('#pricePartTwo').show();
				$('#overall').show();
				$('#overallPrice').text(parseInt($('#partTwoPrice').text()) + parseInt($('#courcePrice').text())).show();
			} else {
				$('#pricePartTwo').hide();
				$('#overall').hide();
			}
		}).change();
	});

