Hola.
tengo el siguiente problema, tengo una tabla que se genera dinamicamente: 
 Código HTML:
 <table class="table table-striped custab">
    <thead>
        <tr>
            <th>Servicio</th>
            <th></th>
            <th style="text-align: center;">Normal</th>
            <th style="text-align: center;">Adulto Mayor</th>
            <th style="text-align: center;">Preferencial</th>
        </tr>
    </thead>
    <tbody><tr>
          <td>Pasajes</td>
          <td><input type="checkbox" id="ss" name="ss[8]"></td>
          <td align="center"><input type="checkbox" disabled=""></td>
          <td align="center"><input type="checkbox" disabled=""></td>
          <td align="center"><input type="checkbox" disabled=""></td>
         </tr>
       <tr>
           <td>Reclamos</td>
           <td><input type="checkbox" id="ss" name="ss[9]"></td>
           <td align="center"><input type="checkbox" disabled=""></td>
           <td align="center"><input type="checkbox" disabled=""></td>
           <td align="center"><input type="checkbox" disabled=""></td>
     </tr>
     </tbody></table>  lo que quiero hacer con JAVASCRIPT O JQUERY es que haciendo clic en el checkbox con id="ss" me active solo los checkbox de la fila de la tabla.
 espero alguien me pueda ayudar