function translit()
{
	text = $('#text').attr('value');
	if (text)
	{
		$.post('/ajax/translit.php', {text: text}, translitSuccess)
	}
}

function translitSuccess(data)
{
	$('#text').attr('value', data);
}
