
function myChanage(object) {
	var phoneKind=object.value;
	var url = "/skin/skinMatch.do?method=cascadeSelect";
	var phone=jQuery("#phoneType");
	 jQuery.ajax({type:"POST", url:url, data:"phoneKind=" + phoneKind ,success:function(datas) {
	 	 phone.html(datas);
	 }});
	 }
function rederect1(phoneType){
    var url="/skin/skinMatch.do?method=findByPhoneType&phoneType="+phoneType.value;
    url+="&phoneKind="+encodeURIComponent(document.getElementById("phoneKind").value);
    window.location.href=url;
}

function myChanage1(object) {
	var phoneKind=object.value;
	var url = "/skin/skinMatch.do?method=cascadeSelect";
	var phone=jQuery("#phoneType1");
	 jQuery.ajax({type:"POST", url:url, data:"phoneKind=" + phoneKind ,success:function(datas) {
	 	 phone.html(datas);
	 }});
	 }
