using select fields with custom html

hello, im having an issue in a control application using a select field when using custom html where only the first field is displayed on the page, unless i delete it, then it shows both.

this is the html code:
<!DOCTYPE html>
<html lang=“en”>
<head>
<title>Sign In</title>
<!–SC_PAGE_CHARSET–>
<link rel=“stylesheet” type=“text/css” href="{SC_LIB_CURRENT}login/css/login.css">
<link rel=“stylesheet” type=“text/css” href="{SC_LIB_CURRENT}libs/css/styles.css">

<meta name=“viewport” content=“width=device-width, initial-scale=1”>
</head>
<body class=“page-background” style=“background-image:url(’{SC_LIB_CURRENT}login/img/bg-sample-login.jpg’);”>
<div class=“page”>
<div class=“container-small container-color”>
<div class=“background”>
<div class=“content”>
<h1>
Selecci?n ?rea & Documentaci?n
</h1>
Bienvenido a nuestro software de consulta online de sus documentos.<br><br>
Desde aqu? podr? acceder a sus documentos digitalizados, como tambi?n podr? solicitar el env?o de documentos f?sicos.
</p>
<!-- <p>
<a href="#">Read more about us ?</a>
</p>–>
</div>
</div>
<form class=“form” action="" {SC_FORM_ATTR}>
<!–SC_FORM_HIDDEN–>
<h2>
Seleccione un documento
</h2>
<div class=“control”>
<label class=“label” for=“Empresa”>Empresa</label>
<select class=“input” class="{SC_FIELD_CLASS}"{SC_FIELD_INFO_Empresa} type=“select” name=“Empresa”>

</select>
</div>

<div class=“control”>
<label class=“label” for=“Sector”>Sector</label>
<select class=“input” class="{SC_FIELD_CLASS}"{SC_FIELD_INFO_Sector} type=“select” name=“Empresa”>

</select>
</div>
<!–SC_CAPTCHA–>
<!–SC_REQUIRED_MSG–>
<div class=“submit”>
<input class=“button” type=“button” value=“Submit” {SC_FORM_SUBMIT_CALL} />
</div>
</form>
</div>
</div>
</div>

<div class=“alert-message negative”>
<span class=“message”></span>
<span class=“close”>×</span>
</div>

<!–SC_JS_LIB–>
<script type=“text/javascript” src="{SC_LIB_CURRENT}libs/js/error.js"></script>
</body>
</html>
is there any way to fix it?

          &lt;!-- Text input --&gt;
         &lt;div class="form-group"&gt;
            &lt;label class="col-md-4 control-label"&gt;Department&lt;/label&gt;  
              &lt;div class="col-md-4 inputGroupContainer"&gt;
              &lt;div class="input-group"&gt;                      
                    &lt;select name="Empresa" class="form-control {SC_FIELD_CLASS}" {SC_FIELD_INFO_Empresa}&lt;/select&gt;
          &lt;/div&gt;
        &lt;/div&gt;
    &lt;/div&gt;

Then in your control form look for your Empresa field properties and change the Data Type to Select and at the Lookup Setting create your selection list

Hello, I have the same trouble, have you ever solved it?