Subversion Repositories SmartDukaan

Rev

Rev 18997 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 18997 Rev 19061
Line 45... Line 45...
45
        	else
45
        	else
46
        	{
46
        	{
47
//         		$("#state").val(msg['state']);
47
//         		$("#state").val(msg['state']);
48
        		$("#cities").empty();
48
        		$("#cities").empty();
49
        		for(var i in msg['cities']){
49
        		for(var i in msg['cities']){
50
        			var html = "<option value="+msg['cities'][i]+">"+msg['cities'][i]+"</option>"
50
        			var html = '<option value="'+msg['cities'][i]+'"></option>';
51
        			$("#cities").append(html);
51
        			$("#cities").append(html);
52
        		}	
52
        		}	
53
        	}
53
        	}
54
            
54
            
55
        });   
55
        });