I have a set of JQuery UI tabs on a given page and have set the cache property to true for them to reduce the number of requests that are issued. I also have a select list
When they click on a different item just use:
$("#tabs .ui-tabs-nav a").removeData("cache.tabs");
That will remove the cache for all the tabs and it will recache when they click on items.