</select>
            </div>
        </div>
        <div class="row-fluid">
            <div class="col-lg-12 span12" style="text-align:center">
                <h5>PARTICIPANTES INSCRITOS</h5>
            </div>
        </div>
        <table class="table table-striped table-hover table-bordered bootstrap-datatable datatable dataTable" id="filtro2"> 
            <thead>
                <th>Foto</th><th>Cedula</th><th>Apellidos</th><th>Nombre</th><th>Desincorporar</th><th>Fecha</th><th>Motivo</th>
            </thead>
            <tbody>
            <?php 
if ($Datos_Curso[0]) {
    $laParticipantes = $lobjCurso->consultar_participantes();
    for ($i = 0; $i < count($laParticipantes); $i++) {
        $laParticipantes[$i][6] = $laParticipantes[$i][6] ? $laParticipantes[$i][6] : 'default.png';
        echo '<tr>';
        echo '<td><img style="width:52px;height:52px;" src="../media/img/participantes/' . $laParticipantes[$i][6] . '"/></td>';
        echo '<td style="padding-top:20px">' . $laParticipantes[$i][4] . '</td>';
        echo '<td style="padding-top:20px">' . $laParticipantes[$i][2] . ' ' . $laParticipantes[$i][3] . '</td>';
        echo '<td style="padding-top:20px">' . $laParticipantes[$i][0] . ' ' . $laParticipantes[$i][1] . '</td>';
        echo '<td style="text-align:center"><input type="checkbox" style=" -ms-transform: scale(2);-moz-transform: scale(2);-webkit-transform: scale(2);-o-transform: scale(2);" name="participante_desincorporar[]" value="' . $laParticipantes[$i][8] . '" onclick="activar_motivo(this,' . $i . ')"></td>';
        echo '<td><div class="input-append date datepicker"   data-date="' . date('d-m-Y') . '"  data-date-format="dd-mm-yyyy">
                    <input type="text" class="span2"  name="fecha[]"  id="cam_fecha' . $i . '" value="' . date('d-m-Y') . '" disabled/>
                  <span class="add-on"><i class="icon-calendar"></i></span>
                </div></td>';
        echo '<td ><textarea name="motivo[]" id="cam_motivo' . $i . '" disabled></textarea></td>';
        echo '</tr>';
        $checked = "";