<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">
function cambia(immagine) {
var percorso = "/images/"
document.getElementById('mostra').innerHTML = "<img src='" + percorso + immagine + "' alt='formazione'/>";
}
</script>
</head>
<body>
<select name="formazione" onchange="cambia(this.options[this.selectedIndex].value)">
<option value=""></option>
<option value="formazione1.jpg">4 - 4 - 2</option>
<option value="formazione2.jpg">4 - 3 - 3</option>
</select>
<div id="mostra"></div>
</body>
</html>