I try to include a field within a form with the selectpicker class of bootstrap but the style does not add style or live search, any idea of why? this is my code
These are the libraries that I use, only jquery I have it remotely bootstrap I have it locally
<link href="style/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery.js"></script>
<script src="style/bootstrap/js/bootstrap.min.js"></script>
This is the form
<div class="form-group">
<label for="exampleInputEmail1">Nombre</label>
<input type="email" class="form-control" name="nombre" placeholder="Email">
</div>
<div class="form-group">
<label for="exampleInputEmail1">Apellidos</label>
<input type="email" class="form-control" name="nombre" placeholder="Email">
</div>
<div class="form-group">
<label for="exampleInputEmail1">Area</label><br/>
<select class="selectpicker" data-live-search="true">
<option data-tokens="ketchup mustard">Hot Dog, Fries and a Soda</option>
<option data-tokens="mustard">Burger, Shake and a Smile</option>
<option data-tokens="frosting">Sugar, Spice and all things nice</option>
</select>
</div>
<div class="form-group">
<label for="exampleInputEmail1">Corrre electronico</label>
<input type="email" class="form-control" name="apellidos" placeholder="Email">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
<input type="hidden" name="tipo" value="1">
</div>
<button type="button" class="btn btn-default">Cancelar</button>
<button type="submit" class="btn btn-success">Registrarme</button>
</form><!-- Cierrra form registro -->