$('document').ready(function() {
	
	$('select[name="sponsor"]').change(function() {
		$('#sponsoring_cost').text($('select[name="sponsor"] :selected').attr('x-cost'));
	});
	
});
