function check_email(new_email){

    //$.get("http://cv.rs/ajaxcontroler/checkEmail/" + new_email,'',
    //function(data){
    //$('#email_exists').load('http://cv.rs/ajaxcontroler/checkEmail');
    // });
    //$.ajax({
        //url: 'http://cv.rs/ajaxcontroler/checkemail',
        //type: 'post',
        $.post('http://cv.rs/ajaxcontroler/checkemail', '',
				function(data, successResponce, type){

            //$('#email_exists').attr('innerHTML', result);
            $('#email_exists').html(successResponce + ' ' + data + ' ' + type);
            $.pnotify({
                pnotify_title: "Pines Notifys1234",
                pnotify_text:  data,
                pnotify_nonblock: false,
                pnotify_mouse_reset: false
                
            });
           
        }
    );


    //return false;
//$.get("http://cv.rs/ajaxcontroler/checkEmail", {
//username: 'pera',
//email: 'email@com.com'
//}, function (data) {
//  alert(data);
//});

    
    

       
  
}
