function changeDemo ()
{
var img = window.document.getElementById("award").value;

if (img !=='---')
{
document.getElementById("award_demo").style.display = "block";
document.getElementById("award_img").src = "/uploads/medals/"+img;
} else {
document.getElementById("award_demo").style.display = "none";
}
}