}
?>
                            <div style="margin-top:10px;">
                            <?php 
if ($id_status != 14) {
    ?>
                            <div style="margin-left:14px; margin-top:10px; width:356px;">
                            ALTERAR STATUS: <span style="color:#FF0000;">*</span><br />
                            <select id="id_status" name="id_status" class="form_estilo" style="width:354px;" onchange="VerificaStatus(this.value)">
                            <?php 
    if ($id_status != 14 && $id_status != 13) {
        ?>
                            <option value="0">.:SELECIONE:.</option>
                            <?php 
    }
    $e = $dt1->buscaRelStatus($d->id_status);
    foreach ($e as $j => $brs) {
        ?>
                            <option value="<?php 
        echo $brs->id_status;
        ?>
" <?php 
        if ($id_status == $brs->id_status) {
            ?>
 selected="selected" <?php 
        }
        ?>
><?php 
        echo $brs->status;
        ?>
</option>