Ahora lo he intentado de la siguiente forma sin obtener aun resultados. 
 
     
Código asp:
Ver original- <table name="tabla" width="352" class="fondo_table3"> 
- <tr><td colspan=6 class="titulo"></td></tr> 
-     <tr><td colspan="6" height=4></td></tr> 
-     
-   <tr> 
-             <td class="text_black_bold_12" width="30%" nowrap> <strong>Teléfono</strong> </td> 
-             <td colspan="3">  
-             <% 
-              
-             SQL3 = "SELECT distinct EQUIPO" 
-             SQL3 = SQL3 & " FROM CELULAR " 
-             Set reg4 = conecta.Execute(SQL3)                     
-             %> 
-                          
-               <select name="CCequipo" id="EQUIPO" class="combo" OnChange="ComponerLista (document.forms.CC.CCequipo.value);"> 
-               <option value="0" selected>Seleccionar</option> 
-               <% 
-               if Not reg4.Eof then  
-                     noRecord = 1 
-                     While (not reg4.EOF) 
-                       %> 
-                       <option value="<%=(reg4.Fields.Item("EQUIPO").Value)%>"><%=(reg4.Fields.Item("EQUIPO").Value)%></option> 
-                       <% 
-                     reg4.Movenext 
-                     wend 
-               else 
-                     noRecord = 0     
-                      %>     
-               <%end if 
-                 reg4.Close 
-               %>                  
-               </select>        
-           </td>            
-   </tr> 
-    
-   <tr> 
-       <td width="30%"> 
-         <strong>Modelo:</strong></td> 
-          
-     <td width="71%">             
-             <Select Name="CCmodelo" style="display:none">                
-             </Select>    
-             <INPUT  
-             TYPE="TEXT" 
-             NAME="modelo"  
-             SIZE="1" 
-             maxlength="10" 
-             value="ninguno" 
-             style="display:none" 
-             >            
-     </td> 
-     </tr> 
-    
-   <tr> 
-         <td width="30%"> 
-           <strong>Número De Serie:</strong></td> 
-          
-         <td width="71%">             
-             <Select Name="CCserie" style="display:none">                 
-             </Select>    
-             <INPUT  
-             TYPE="TEXT" 
-             NAME="serie"  
-             SIZE="1" 
-             maxlength="15" 
-             value="ninguno" 
-             style="display:none" 
-             >        
-     </td> 
-   </tr> 
-   <tr><td colspan="6" width="100%"> </td></tr> 
-     <tr> 
-         <td colspan="6" align="center"><input type="button" name="CCbuscar" value="Buscar" class="botton80x23" onClick="sql3">    
-             <input type="button" name="CClimpiar" value="Limpiar" class="botton80x23" onClick="BorrarLista()">   
-         </td> 
-     </tr> 
-     <tr><td colspan="6"> </td></tr> 
-    
- </table> 
La idea es que se muestre la primera combobox y al seleccionar una de opcion de esta se despliege la 2 combobox en consecuencia de las opcion antes seleccionada y asi sucesivamente. 
Espero que me puedan ayudar 
