I am currently working with materialize CSS and it seems I\'ve gotten snagged with the select fields.
I\'m using the example provided from their site but unfortunate
Because they override the browser default, the select styling needs Javascript to run. You need to include the Materialize Javascript file, and then call
$(document).ready(function() { $('select').material_select(); });
after you've loaded that file.