Hide Form fields based on condition

This is working :

// Write your table-specific startup script here, no need to add script tags.
$("#x_Category_Temp").change(function() {
    if ($(this).val() == "Motor Vehicle") {
        $('#x_Make').show();
       
    } else {
        $('#x_Make').hide();
       
    }
});
$("#x_Category_Temp").trigger("change");

i just need to add the id for label . Thank you