Assuming that the content of your iframe is served from the same domain you could use:
$('.rich_text').contents()
.find('body')
.bind('selectstart', function(){});
As you can see from here, the selectstart event is correctly fired when the element is selected.