You can get the file names by accessing the files of the fileUpload object, for example
document.getElementById("file").files[0].name
Assign this value to an onChangeevent text box fileInputlike this
document.getElementById("filename").value = document.getElementById("file").files[0].name;
will set the first file name in your field with id filename
, C:\fakepath\yourfilename.ext