function condition_clear(n) {

	$('#'+n+" input[type=checkbox]").each(function() {
			$(this).attr('checked', false);
	});
}
