You include js twice and do not call selectpicker() ..
delete this line: <script src="http://silviomoreto.github.com/bootstrap-select/javascripts/bootstrap-select.js"></script>
and add this:
<script type="text/javascript"> $(document).ready(function(){ $('.selectpicker').selectpicker(); }); </script>
in <header> and it will work
source share