$(document).ready(function() {
	toggle_terms();

	$('#payment_type').change(function() {
		toggle_terms('normal');
	});

	function toggle_terms(anim) {
		if ($('#payment_type').val() == 2) {
			$('#terms_and_conditions').show(anim);
		} else {
			$('#terms_and_conditions').hide(anim);
		}
	}
});

