You could use the contains selector method:
$('td:contains("$ 0000,000.0000")').parent().hide(); //to hide
$('td:contains("$ 0000,000.0000")').parent().remove(); //to remove
Or, if you just want to remove or hide the td that contains the text:
$('td:contains("$ 0000,000.0000")').hide(); //to hide
$('td:contains("$ 0000,000.0000")').remove(); //to remove