jQuery(document).ready(function(){
	jQuery('.pick-6 input').click(function(){
		jQuery('input.concert-choice').each(function(){
			this.checked = true;
		});
	});
});