function sWaluta (kwota){
  kwota = kwota.replace(/,/gi,".");
  if (/^[0-9]{0,4}?(\.)?[0-9]{0,2}$/.test(kwota) ) {
    if (/\.[0-9]$/.test(kwota) ) {
      kwota += "0";
    }else if (/\.$/.test(kwota)) {
      kwota += "00";
    }else if (!/\.[0-9]{2}$/.test(kwota) ) {
      kwota += ".00";
    }
    return kwota;
  }else{
    return false;
  }
}
