I have a piece of code I am working with and there is a plugin being used to style the select boxes so it's hell or already.
I am destroying the element so that when I chose something from #searchbrand it filters out what is it #searchmodel. However I am having trouble rebuilding the element as previously styles when this triggers.
$("#searchbrand").change(function() {
var _class = $('option:selected', this).attr('class');
$('#searchmodel option').hide().filter(function() {return $(this).attr('class') == _class;}).show();
$('#searchmodel').selectBox('destroy');
});