Hi Vasantha,
The following would do the work.
$('#labelID').hide();
$('#dropdownlistID').hide();
Please replace the labelID and dropdownlistId with the control IDs.
Other option is to make the css usage.
$('xxxxID').css('display', 'none');
Thank you,
Vamsi