using select fields with custom html

hello, im having an issue 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">

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

                    &lt;/select&gt;
                &lt;/div&gt;

                &lt;div class="control"&gt;
                    &lt;label class="label" for="Sector"&gt;Sector&lt;/label&gt;
                    &lt;select class="input" class="{SC_FIELD_CLASS}"{SC_FIELD_INFO_Sector} type="select"  name="Empresa"&gt;

                    &lt;/select&gt;
                &lt;/div&gt;
                &lt;!--SC_CAPTCHA--&gt;
                &lt;!--SC_REQUIRED_MSG--&gt;
                &lt;div class="submit"&gt;
                    &lt;input class="button" type="button" value="Submit" {SC_FORM_SUBMIT_CALL} /&gt;
                &lt;/div&gt;                    
            &lt;/form&gt;
        &lt;/div&gt;
    &lt;/div&gt;
    &lt;/div&gt;

    &lt;div class="alert-message negative"&gt;
        &lt;span class="message"&gt;&lt;/span&gt;
        &lt;span class="close"&gt;×&lt;/span&gt;
    &lt;/div&gt;

    &lt;!--SC_JS_LIB--&gt;
    &lt;script type="text/javascript" src="{SC_LIB_CURRENT}libs/js/error.js"&gt;&lt;/script&gt;
&lt;/body&gt;

</html>
is there any way to fix it?