我找不到我的javascript-ajax-php“上传文件”代码有什么问题

this is my first question here (usually I like to find my own ways to solve problems) but I just can't find problem in my file upload code. It's supposed to use AJAX. I simplified everything so it would be easier for you to read. Here is HTML form:

<form id="fileForm" enctype="multipart/form-data" method="POST" action="php/uploadfile.php">
<p>Insert file: <input type="file" id="fileUp" name="fileUp" />
<button type="submit" id="uploadButton" onclick="sendFile();">Upload</button></p>
</form>

Now here goes javascript sendFile() function:

function sendFile()
{    
    var forma = document.getElementById("fileForm");
    var failas = document.getElementById("fileUp");
    var uploadButton = document.getElementById("uploadButton");

    forma.onsubmit = function(event)
    {
        event.preventDefault();
    }

    uploadButton.innerHTML = "Uploading, please wait!";

    var newFile = failas.files[0];

    var formData = new FormData(forma);
    formData.append("fileUp", newFile, newFile.name);

    alert(newFile.name);// Here it says filename.jpg it means everything is ok at this stage

    xmlhttp = new XMLHttpRequest();
    xmlhttp.onreadystatechange = function()
    {
        if(xmlhttp.readyState == 4 && xmlhttp.status == 200)
        {
            alert (xmlhttp.responseText);
        }
    }

    xmlhttp.open("POST", "php/uploadfile.php", true);
    xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");  
    xmlhttp.send(formData);
}

And php:

<?php
echo var_dump($_FILES);
?>

It should alert contents of $_FILES, but it says array(0){} even if I try $_REQUEST. So, if anyone could suggest what may be wrong, it would be appreciated :]