I'm using datatables jquery plugin for beautifying my tables. I'm trying to stylize the search box to look more like this

However the javascript generated code for the current search box in datatables looks something like this
<div class="dataTables_filter" id="countstable_filter">
<label>Search:
<input type="text" aria-controls="countstable" placeholder="Search">
</label>
</div>
I was able to get javascript to add a placeholder attribute to the search box. But I can't figure out how to remove the Search: text. I have seen a few solutions on google, but they required the label to have an id which I don't have here.