while(document.getElementById('nospam').firstChild)
 document.getElementById('nospam').removeChild(document.getElementById('nospam').firstChild);

var input = document.createElement('input');
input.setAttribute('type', 'hidden');
input.setAttribute('name', 'wi');
input.setAttribute('value', document.getElementById('a').value * document.getElementById('b').value);
document.getElementById('nospam').appendChild(input);