If you want to remove the whole select element with it's content, then you can do it with regex only if some constraints are met: no nested element of the same name (select in this case).
Try this:
string pattern = @"<select\b[\s\S]*?</select>";
Cheers
Andi