/**
* Created by Pascal on 15/06/16.
*/
$(function () {
//Set to true if we want to send the form via AJAX
$('#demoForm').append('<input type="hidden" name="secretCode" value="isHuman" />');
//Turn all selects into selectric input
$('.select-element select').selectric({
onInit: function(){
$('.select-element .icon').remove();
}
});
});