One thing you could do is combine some selectors, but you'd only be saving 3 lines total:
var selCheck = selectedCheck;
if(selCheck == 'changeCC1'){
$('#changeCC1').prop('checked', true);
$('#changeCC2, #changeCC3').prop('checked', false);
}
if(selCheck == 'changeCC2'){
$('#changeCC1, #changeCC3').prop('checked', false);
$('#changeCC2').prop('checked', true);
}
if(selCheck == 'changeCC3'){
$('#changeCC1, #changeCC2').prop('checked', false);
$('#changeCC3').prop('checked', true);
}
Is it "efficient"? I guess so. I don't think it warrants a switch() statement. You could refactor it slightly so it's in an if-else if-else pattern. As it stands now if the first condition is true, it will still check the second two if statements. There may be more "clever" ways to do it, but I think it's pretty straightforward as it is and I think trying to change it would inevitably make it harder to read and maintain later.
Just curious though... are these radio buttons? Because this sort of functionality is native in HTML.