function addme()
{
    $.ajax({
	type: "POST",
	url: "/enovice/prijava/",
	data: $('#enoviceform').serialize(),
	success: function(data)
	{
	    if(data)
	    {
		$('#enovicereturn').html(data);
	    }
	}
    });
}
