RTL and LTR into a Select element
HTML
<h4>Normal RTL with Arabic text</h4>
<div dir="rtl">
<select>
<option>المبلغ الأول 15.000 درهم</option>
<option>المبلغ الآخر 19،000 درهم</option>
</select>
</div>
CSS
div[dir="rtl"] input[type="radio"]+label,
div[dir="rtl"] select option {
direction: rtl;
text-align: right;
}