I have been using the following code (with jQuery v1.4.2) to set the \'selected\' attribute of a select list based on its \'text\' description rather than its \'value\':
I usually use:
$("#my-Select option[text='" + myText +"']").attr("selected","selected") ;