function go() {
var ABC = new Array('а','б','в','г','д','е','ё','ж','з','и','й','к','л','м','н','о','п','р','с','т','у','ф','х','ц','ч','ш','щ','ъ','ы','ь','э','ю','я');
var criptText = document.getElementById('originalText').value;
var unCriptText = criptText;
for (var i=0; i<criptText.length; i++) {
for (j=0; j<ABC.length; j++) {
if (criptText[i] == ABC[j]) {
unCriptText[i] = ABC[j+1]; //вот здесь замена не происходит
}
}
}
document.getElementById('replaceText').value = unCriptText;
}