Search function from select and display

Search function from select and display

Hello everyone  , i got a problem . I making littel product catalog and i want add for this catalog search option in tabel by value or name ... example AU-1010 . I want personalize this search function by this symbol "AU-1010".
I have make form and select with chained jquery function and add this result display from here  http://jsfiddle.net/TLBvx/1/ . When i choose last option of last tier it display my result in tabel . It this point i have problem beacuse i want search function connect to this tabel . When I search by this value i want result display connet to this select option and i confused how to do it.. My lvl expirience with java code is very low ... So I am asking you dear forum members for help or adivce ... 

This is my code :
  
  1. <script src="js/jquery-1.9.1.min.js"></script>
  2. <script src="js/jquery.chained.min.js"></script>
  3. <script charset=utf-8>
  4. $(document).ready(function(){
  5. $("#series").chained("#mark");
  6. $(".model").chained("#series");
  7. });
  8. $(document).ready(function(){
  9. $('select.model').change(function(){
  10. var target = $(this).data('target');
  11. $(target).children().addClass('hide');
  12. var show = $("option:selected", this).data('show');
  13. $(show).removeClass('hide');
  14. });
  15. });
  16. </script>
  17. <div class="chained">
  18. <select id="mark" name="mark">
  19. <option value="">--</option>
  20. <option value="Ciezarowe">Ciezarowe</option>
  21. <option value="Autobusy">Autobusy</option>
  22. </select>
  23. <select id="series" name="series">
  24. <option value="">--</option>
  25. <option value="BOVA" class="Ciezarowe">BOVA</option>
  26. <option value="Mercedes" class="Ciezarowe">Mercedes</option>
  27. <option value="Peugeot" class="Ciezarowe">Peugeot</option>
  28. <option value="Ikar" class="Autobusy">Ikar</option>
  29. <option value="Iveco" class="Autobusy">Iveco</option>
  30. <option value="Man" class="Autobusy">Man</option>
  31. </select>
  32. <select class="model" name="model" data-target=".info">
  33. <option value="">--</option>
  34. <option value="AU-1010" data-show=".bova" class="BOVA">Futura</option>
  35. <option value="AU-1012" data-show=".lexio" class="BOVA">Lexio</option>
  36. <option value="AU-1014" data-show=".magiq " class="BOVA">Magiq </option>
  37. <option value="AU-1016" data-show=".synergy" class="BOVA">Synergy</option>
  38. <option value="S1" data-show=".mercedes" class="Mercedes">S1</option>
  39. </select>