You can allow people to clear their current selections with the allowClear option when initializing Select2. Setting this option to true will enable an "x" icon that will reset the selection to the placeholder.
  
$('select').select2({
  placeholder: 'This is my placeholder',
  allowClear: true
});