function copyText(t){
var text = t.value
var nowy = text.replace(/ \/ |\/| |\.| - | -|- |-/g,',');
var nowy2 = nowy.replace(/\(|\[|\)|\]|\=/g,'');
document.getElementById('t2').value = nowy2;
}
