$(function(){
	$("select[name=city]").change(function(){
		if (this.value == 'Другой')
		{
			$(this).after('<input type="input" maxlength="255" value="" name="city"/>');			
			$("select[name=city]").remove();
			$("input[name=city]").focus();
		}
	});
});