show and hide select tag option depending on filter
var $selectTag = $('#selectTag');
var $selectOptions = $selectTag.find('option');
var $selectOptionsDetach = $('#selectTag option').detach();
// Only show the select option with the class of .option-filter-class
$selectTag.empty().append( $selectOptionsDetach.filter('.option-filter-class') );