Hello friends! Help please: problem with the tag "select" on a menu

Hello friends! Help please: problem with the tag "select" on a menu

The problem is to choose an option tag "select" without closing the menu.
Help please!


  1.  <div class="presup"
  2.                 <ul>
  3.                     <li><a href="#">Button-one<span></span></a>                        
  4.                         <ul>
  5.                             Cont-one                            
  6. <select id="select">
  7.   <option value="volvo">Volvo</option>
  8.   <option value="saab">Saab</option>
  9.   <option value="mercedes">Mercedes</option>
  10.   <option value="audi">Audi</option>
  11. </select
  12.                         </ul>        
  13.                     </li>            
  14.                </ul>
  15.  </div>       
  16.         
  17.  <div class="presupdos">  
  18.                <ul>
  19.                     <li><a href="#">Button-two<span></span></a>                        
  20.                         <ul>
  21.                             Cont-dos
  22.                        </ul>        
  23.                     </li>       
  24.                </ul>
  25.  </div>

  1. jQuery(function($) { // Shorthand for jQuery(document).ready(function($) {
  2.       init('.presup,.presupdos', 0);      
  3.       function init(selector, count) { //add indicator and hovers to submenu parents
  4.             $(selector).find('li').each(function() {
  5.                   if ($(this).find('ul').length > count) {
  6.                         $(this).hover(function() { // show subnav on hover
  7.                               $(this).find('ul').stop(true, true).slideDown();
  8.                         }, function() { // hide submenus on exit
  9.                               $(this).find('ul').stop(true, true).slideUp();
  10.                         });
  11.                   }
  12.             });
  13.       }
  14. });

MIKEPIANIST.-