function selectInput(elm)
{
    if (elm) {
        elm.focus();
        elm.select();
    }
}
