reset select2 in jquery code example
Example 1: jquery clear select 2
$('select2element').val(null).trigger("change")
Example 2: reset select form jquery
$('select').each( function() {
$(this).val( $(this).find("option[selected]").val() );
});