Why did you select an image twice the size of the second order image is not showing?
My full code: http://jsfiddle.net/ayxZM/
<script type="text/javascript">
function handleFiles(files) {
for (var i = 0; i < files.length; i++)
{
alert(files[i].size + " Bytes");
}
}
</script>
<input type="file" onchange="handleFiles(this.files)">