Have you figured out a solution for this problem yet? If not, you can use a function similar to this:
function filterTable(pstrValue) { if( pstrValue == 'none' ){ $('#my_table > tbody > tr').show(); } else { $('#my_table > tbody > tr').hide(); $('#my_table > tbody > tr:contains('+pstrValue+')').show(); } } Then simply call it from the onchange of your state select box like so: <select id="state_selector" onchange="filterTable(this.value);"></ select> Hope that helps if you haven't already figured something out! -Bryan