$(function(){
	$('input[name=formField_sponsor]').click(function(){
		if (this.value == 00) {
			var total = $('input[name=formField_sponsor_other]').val();
		} else {
			$('input[name=formField_sponsor_other]').val('');
			var total = $(this).val();
		}
		$('input[name= formPayment_total_payment]').val(total);
	});
	$('input[name=formField_sponsor_other]').blur(function(){
		if ($('input[name=formField_sponsor]:checked').val() == 00) {
			var total = $(this).val();
			$('input[name= formPayment_total_payment]').val(total);
		}
	});
});