  $("#nomos").change(function () {
    var id = $("#nomos").val();
    $("#nomos option:selected").each(function () {
    var id = $("#nomos").val();
    });
    $(function(){
    $("#dimos_div").html("<center><img src=\"images/ajax-loader.gif\" width=\"16\" height=\"11\" align=\"absmiddle\" border=\"0\" alt=\"\" />Please wait...</center>");
    $.post("./ajax/dimosen.php", { id: id },
          function(data){
        $("#dimos_div").html(data)
      }
    );
  });
})

