$(document).ready(function()
{
$(‘#crmonce_city’).change(function()
{
var Test1 = $(‘#crmonce_city’).val();
if(Test1 == “Chennai” || Test1 == “chennai”|| Test1 == “Hyderabad” || Test1 == “hyd”)
{
$(‘#crmonce_state’).parent().parent().hide();
}
else
{
$(‘#crmonce_state’).parent().parent().show();
}
});
});