1 $("#lbCountries").click(function () {
2 $("#lbCountires option").each(function (index) {
3 if ($(this).is(':selected')) {
4 $(this).prop('disabled', false);
5 }
6 else {
7 $(this).prop('disabled', true);
8 }
9 });
10 });
11