<html:select property="cardTypeId" onchange="doGetAll()">
<html:option   value="">请选择</html:option>   
<html:options collection="ctList" property="cardTypeId" labelProperty="cardTypeName" />   
</html:select>js:
function doGetAll(){
var id=document.forms[0].cardTypeId.value;
window.location.href="cardissueinfo.do?method=doGetAll&&cardTypeId="+id;
}