Conus,
function send()
{
var xmlhttp = getXmlHttp()
xmlhttp.open('POST', '/', true);
xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded') // ты забыл передать заголовок
xmlhttp.onreadystatechange = function()
{
if (xmlhttp.readyState == 4) { if(xmlhttp.status == 200) { alert(xmlhttp.responseText); } }
};
xmlhttp.send('n=' + value);
}