/* - enquiry-form.js - */
jq(function(){

// Initially hide the address fields.
if (!jq('#post-prospectus').is(':checked')){
    jq('#pfg-fieldsetname-address').hide();
};


// Toggle display of the address fields.
jq("#post-prospectus").click(function() {
    jq('#pfg-fieldsetname-address').slideToggle("slow");
});



// Toggle Distance from type of study field when user selects Photography.
jq("#study_area").change(function() {
    if (this.value == "Digital Photography") {
        if (jq('#study_type_a').val() == "Distance") {
            jq('#study_type_a option[value=""]').attr("selected", "selected");
        }
        jq('#study_type_a option[value="Distance"]').remove();

    } else if (jq('#study_type_a option[value="Distance"]').length == 0) {
        jq('#study_type_a').append('<option value="Distance">Distance</option>');
    }
});


// Toggle Photography from area of study field when user select either Melbourne or Gold Coast from Campus field.
jq("#what_campus").change(function() {
    if (this.value=="CATCGC") {
        if (jq('#study_area').val()=="Digital Photography") {
            jq('#study_area option[value=""]').attr("selected","selected");
        }
        jq('#study_area option[value="Digital Photography"]').remove();

    } else if (jq('#study_area option[value="Digital Photography"]').length==0) {
        jq('#study_area').append('<option value="Digital Photography">Photography</option>');
    }
});

});


