<ion-select> clickable text

The template:

<ion-item>
    <ion-label stacked>Select clickable option texts</ion-label>
    <ion-select>
        <ion-option value="opt1"><a (click)="myDetails()">Option one description<a> text</ion-option>
    </ion-select>
</ion-item>

As you can see above, I want to make certain parts of the text in clickable. I am using toast to show the text. But I am unable to get my head around making part of the text actually clickable.

Is there a way?