This will probably do what you want, but I'm making assumptions that your HTML doesn't contain unusual things like >s in the attribute values:
s/<img [^>]*src=[^>]+-disclose.gif[^>]*>//ig;
You should be careful about using regular expressions to parse HTML, however. Using a proper parser, such as HTML::Parser, will make your script much more robust.