First off, your html is a bit messy, lacks a few tags. But here you go. ;)
1:
Preview - http://jsfiddle.net/Xpc63/1/
$('.CellLabel').removeByContent('Money');
See preview for full JS code.
2:
Preview - http://jsfiddle.net/ahzPs/1/
$('.CellLabel').contains('Money').remove();
See preview for full JS code.
3:
Preview - http://jsfiddle.net/mWtzw/
$('.CellLabel').filter(function() {
return $(this).html().indexOf('Money') != -1;
}).remove();