If you want to apply clear value to a specific number of fields, then assign id or class to them and apply empty value to them. like this:
$('.all_fields').val('');
where all_fields
is class applied to desired input fields for applying empty values.
It will protect other fields to be empty, that you don't want to change.