var thisString;
function startText() {
thisString = document.form.select.value;
thisString = thisString.replace(/ة/g, "ه‌");
thisString = thisString.replace(/ذ/g, "ژ");
thisString = thisString.replace(/ؤ/g, "ۆ");
thisString = thisString.replace(/ث/g, "ppzppp");
thisString = thisString.replace(/ص/g, "ص");
thisString = thisString.replace(/ي/g, "ی");

thisString = thisString.replace(/ط/g, "گ");
thisString = thisString.replace(/لَ/g, "ڵ");

thisString = thisString.replace(/ء/g, "‌و");

thisString = thisString.replace(/وَ/g, "ۆ");
thisString = thisString.replace(/یَ/g, "ێ");
thisString = thisString.replace(/ىَ/g, "ێ");

thisString = thisString.replace(/لآ/g, "ڵا");
thisString = thisString.replace(/لاَ/g, "ڵا");

thisString = thisString.replace(/آ/g, "ێ");
thisString = thisString.replace(/ض/g, "چ");
thisString = thisString.replace(/رِ/g, "ڕ");
thisString = thisString.replace(/’/g, "‌");
thisString = thisString.replace(/ppzppp/g, "پ");
thisString = thisString.replace(/ظ/g, "ڤ");
document.form.select.value=thisString;
}
