Hola affv.
Prueba con el siguiente código:
Código PHP:
<html>
<head>
<script language="JavaScript">
function mostrar(sURL){
document.frm.imagen.src = sURL;
}
</script>
</head>
<body>
<form name="frm">
<input type="file" onchange="mostrar(this.value)">
<img name="imagen">
</form>
</body>
</html>
Saludos.