﻿function changeText(txtB, strmgs) {
    var txtinput = document.getElementById(txtB);
    var txt = txtinput.value;
    if (txt == "" || txt == null) {
        txtinput.value = strmgs;
        txtinput.style.color = 'gray';
    }
}
