function doLoad_realty(value,id) {
    var req = new JsHttpRequest();
    req.onreadystatechange = function() {
        if (req.readyState == 4) {
            document.getElementById('result').innerHTML = req.responseJS.q;
            document.getElementById('upl').value = null; 
        }
    }
    req.open(null, 'http://poltava.info/i/realty_img_upload.php?id='+id, true);
    req.send( { q: value });
}