c'è un chiaro problema di cast.

prova cosi

codice:
function Incrementa(value) {
x = document.incremento.valore.value;
x = x*1;
x = x+5;
alert(x);
document.incremento.valore.value = x
}
</script>