Proudmore,
В инпуты в сенд добавить
onchange="send(this)"
И тогда
function send(referer) {
var id= referer.id,
value = referer.value;
nocache = "&nocache=" + Math.random() * 1000000;
var request = new XMLHttpRequest();
request.onreadystatechange = function () {
if (this.readyState === 4) {
if (this.status === 200) {
if (this.responseText !== null) {
}
}
}
}
request.open("GET", "var"+id +"?"+value+"?"+ nocache, true);
request.send();
}