$(document).ready(function(){ //1
$("#search").on("keyup", function() { //2
var value = $(this).val().toLowerCase(); //3
$("#select option").filter(function() { //4
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1); //5
});
});
});