Depending on the number n of cars a user has in his records, there will be n checkboxes to select from.
n
In my view these checkboxes are ren
How to show message if > 1 checkbox selected?
You could check the length property of the :checked checkboxes.
length
if ($('.checkbox:checked').length > 1) { // Show message. };
jsFiddle.
Also, you could select those checkboxes with :checkbox selector.