<select class="form-control select2" id="tipoIdentificacionID" name="tipoIdentificacionID" style="width: 100%;" required>
{% for tipoIdentificacion in tiposIdentificaciones %}
<option value="{{ tipoIdentificacion.tipoIdentificacionID }}">{{ tipoIdentificacion.tipoIdentificacionTITULO|striptags }}</option>
{% endfor%}
</select>
<script type="text/javascript">
$(document).ready(function() {
$('.select2').select2();
});
</script>