
function GetPlaatsenIframe(formname,provincie, selectedvalue)
{
  // -- remove all options except the first (we use this for displaying what we are doing)
  document.forms[formname].plaats.options.length = 1;

  // -- change iframe src
  if (provincie.length==2)
  {
    if (document.getElementById('plaatseniframe'))
      document.getElementById('plaatseniframe').src = '/plaatsenlijst.php?prov='+provincie+'&selected='+selectedvalue+'&formname='+formname;
    else
        plaatseniframe.location = '/plaatsenlijst.php?prov='+provincie+'&selected='+selectedvalue+'&formname='+formname
    document.forms[formname].plaats.options[0].value = '';
    document.forms[formname].plaats.options[0].text = 'bezig met ophalen...';
  } else {
    document.forms[formname].plaats.options[0].value = '';
    document.forms[formname].plaats.options[0].text = '- selecteer eerst een provincie -';
  }

}