$('#search').keyup(function () {
    var term = $(this).val();
    if (term != '') {
        $('.box').hide();
        $('.box').filter(function () {
            return $(this).text().toLowerCase().indexOf(term.toLowerCase()) > -1
        }).show();
    } else {
        $('.box').show();
    }
});
