
/* Submissionform step1 select change event */
jQuery.noConflict();
jQuery(document).ready(function() {
    jQuery('#edit-opleiding-select').change( function() {
      var values = jQuery(this).val().split('@@@');
      jQuery('#startdatum').val(values[0]);
      jQuery('#cursusgeld').val(values[1]);
      jQuery('#edit-startdatum-html').html('Startdatum: '+values[0]);
      jQuery('#edit-cursusgeld-html').html('Cursusgeld: '+values[1]);
      jQuery('#opleiding').val(jQuery('#edit-opleiding-select  option:selected').text());
      jQuery('#opleiding_type').val(values[2]);
    });

    jQuery('.keywords').focus( function() {
            if (jQuery(this).val() == 'Zoek training') {
                jQuery(this).val('');
            }
        }
    )
    jQuery('.keywords').blur( function() {
            if (jQuery(this).val() == '') {
                jQuery(this).val('Zoek training');
            }
        }
    )
});

