$('document').ready(function(){
	
	select = $('#bank_name');
	
	$('.new_select').html($("#bank_name option:selected").html());
	
	$('#bank_name').change(function(){
		
		$('.new_select').html($("#bank_name option:selected").html());
		
		if (select.val() != 0){
		
			$('#donateForm').find('input[value=bank]').attr("checked", "checked");
			
		}
		
		
	});
	$('#donateForm').find('input[value=pay]').click(function(){
		
		if($('#donateForm').find('input[value=pay]').is(':checked')){
		
			$('#bank_name option:first-child').attr('selected','selected');
			$('.new_select').html($("#bank_name option:first-child").html());
		}	
		
	});
});
