I have a field with multiple options and I want to allow it to have only one option selected at the same time but user can hold CTRL key and
Late to answer but might help someone else, here is how to do it without removing the 'multiple' attribute.
$('.myDropdown').chosen({ //Here you can change the value of the maximum allowed options max_selected_options: 1 });