$(document).ready(function(){
	$(".donate input:radio").uniform();
	$("#monthly").attr("checked", "true");
	
	if ($("input[name='paytype']:checked").val() == 'monthly') {
		$("#selectappeals option[id!='where-needed-the-most']").attr("disabled","disabled");
	}
	if ($("input[name='paytype']:checked").val() == 'oneoff') {
		$("#selectappeals option[id!='where-needed-the-most']").attr("disabled","");
	}	
	
	$("input[name='paytype']").change(function(){
		if ($("input[name='paytype']:checked").val() == 'monthly') {
			$("#selectappeals option[id!='where-needed-the-most']").attr("disabled","disabled");
			$("#selectappeals option[id='where-needed-the-most']").attr("selected","selected");
		}
		if ($("input[name='paytype']:checked").val() == 'oneoff') {
			$("#selectappeals option[id!='where-needed-the-most']").attr("disabled","");
		}						
	});				
});
