
function show_reg() {
JsHttpRequest.query(
'http://fcpkultura.ru/ajax.php?function=show', // backend
{
   'id': document.getElementById('tip_ato').value

},
// Function is called when an answer arrives.
function(result, errors)
{
var sel = document.getElementById('result');
var info = result["info"];

//	alert (info);
sel.innerHTML=info;
//var info = result["option"]["length"];
},
false  // do not disable caching
);
}