function radios(){$('#locForm :radio').each(function(){if(!$(this).attr('checked')){$parent=$(this).parent();$parent.find('input[@type=text]').attr('disabled','disabled').attr('value','Enter a postal code');$parent.find('select').attr('disabled','disabled');}else{$(this).parent().find('input[@type=text]').attr('disabled','').attr('value','').focus();$(this).parent().find('select').attr('disabled','');}});}
$().ready(function(){radios();$('#locForm :radio').each(function(){$(this).click(function(){radios()})})
$('#statesSelect select').change(function(){var strStateCode=$(this).val();if(!strStateCode){$('#citiesSelect').hide().attr('value','');return false;}
$('#citiesSelect').show();strOptions=$('#options'+strStateCode).html();$('#citiesSelect').html(strOptions);});});