(function(a){a.fn.modifySelect=function(b){var c=a.extend({modifier:"display",search:"",find:"",replace:""},b||{});if(c.search!==""){if(c.replace!==""){f(this)}else{e(this)}}else{alert("modifySelect() is missing required parameters")}function e(h){var g=d();h.each(function(i){a("#"+this.id+g).each(function(j){a(this).remove()})})}function f(h){var g=d();h.each(function(i){a("#"+this.id+g).each(function(j){var k=a(this).text();if(c.find!==""){a(this).html(k.replace(c.find,c.replace))}else{a(this).html(k.replace(a(this).text(),c.replace))}})})}function d(){mod="";switch(c.modifier){case"value":mod=" option[value="+c.search+"]";break;case"display":mod=" option:contains("+c.search+")";break}return mod}}})(jQuery);