What do you mean "ALSO a label for"? Is there a label element out there with the same ID? That would cause problems in your code since IDs have to be unique. Or are you just calling it a label since it contains the label element? What determines if it is a 'label'? You can use has (
http://api.jquery.com/has/ ) to determine if an element is inside of another one.
$("#text28202").has("label").length will let you know how many elements with that ID have a label as a descendent, assuming you only have one element with that ID the answer should be 0 or 1.
If you post some more code it might help too that way we know what your trying to do with it and where you starting from.
Dave